Skip to content

Commit

Permalink
Merge branch 'master' into kubedb/apimachinery@958de8ec
Browse files Browse the repository at this point in the history
  • Loading branch information
kodiak-appscode[bot] authored Jan 24, 2024
2 parents 1787f74 + d8cd834 commit 974c6ca
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 0 deletions.
1 change: 1 addition & 0 deletions catalog/kubedb/active_versions.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"Druid": [
"28.0.1",
"25.0.0"
],
"Elasticsearch": [
Expand Down
12 changes: 12 additions & 0 deletions catalog/kubedb/raw/druid/druid-28.0.1.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
apiVersion: catalog.kubedb.com/v1alpha1
kind: DruidVersion
metadata:
name: 28.0.1
spec:
db:
image: ghcr.io/appscode-images/druid:28.0.1
initContainer:
image: ghcr.io/kubedb/druid-init:28.0.1
securityContext:
runAsUser: 1000
version: 28.0.1
22 changes: 22 additions & 0 deletions charts/kubedb-catalog/templates/druid/druid-28.0.1.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{{ $featureGates := .Values.featureGates }}
{{- if .Values.global }}
{{ $featureGates = mergeOverwrite dict .Values.featureGates .Values.global.featureGates }}
{{- end }}

{{ if $featureGates.Druid }}

apiVersion: catalog.kubedb.com/v1alpha1
kind: DruidVersion
metadata:
name: '28.0.1'
labels:
{{- include "kubedb-catalog.labels" . | nindent 4 }}
spec:
db:
image: '{{ include "image.ghcr" (merge (dict "_repo" "appscode-images/druid") $) }}:28.0.1'
initContainer:
image: '{{ include "image.ghcr" (merge (dict "_repo" "kubedb/druid-init") $) }}:28.0.1'
securityContext:
runAsUser: 1000
version: 28.0.1
{{ end }}

0 comments on commit 974c6ca

Please sign in to comment.