File tree Expand file tree Collapse file tree 14 files changed +114
-8
lines changed
docs/modules/druid/examples/getting_started Expand file tree Collapse file tree 14 files changed +114
-8
lines changed Original file line number Diff line number Diff line change @@ -23,13 +23,13 @@ spec:
23
23
default:
24
24
replicas: 1
25
25
roleConfig:
26
- listenerClass: external-stable # This exposes your Stacklet outside of Kubernetes. Remove this configuration if this is not desired
26
+ listenerClass: external-stable # This exposes this role outside of Kubernetes. Remove this configuration if this is not desired
27
27
coordinators:
28
28
roleGroups:
29
29
default:
30
30
replicas: 1
31
31
roleConfig:
32
- listenerClass: external-stable # This exposes your Stacklet outside of Kubernetes. Remove this configuration if this is not desired
32
+ listenerClass: external-stable # This exposes this role outside of Kubernetes. Remove this configuration if this is not desired
33
33
historicals:
34
34
roleGroups:
35
35
default:
43
43
default:
44
44
replicas: 1
45
45
roleConfig:
46
- listenerClass: external-stable # This exposes your Stacklet outside of Kubernetes. Remove this configuration if this is not desired
46
+ listenerClass: external-stable # This exposes this role outside of Kubernetes. Remove this configuration if this is not desired
47
47
---
48
48
apiVersion: v1
49
49
kind: Secret
Original file line number Diff line number Diff line change @@ -98,6 +98,10 @@ echo "Installing PostgreSQL for Druid"
98
98
# tag::helm-install-postgres[]
99
99
helm install postgresql-druid oci://registry-1.docker.io/bitnamicharts/postgresql \
100
100
--version 16.5.0 \
101
+ --set image.repository=bitnamilegacy/postgresql \
102
+ --set volumePermissions.image.repository=bitnamilegacy/os-shell \
103
+ --set metrics.image.repository=bitnamilegacy/postgres-exporter \
104
+ --set global.security.allowInsecureImages=true \
101
105
--set auth.database=druid \
102
106
--set auth.username=druid \
103
107
--set auth.password=druid \
Original file line number Diff line number Diff line change @@ -98,6 +98,10 @@ echo "Installing PostgreSQL for Druid"
98
98
# tag::helm-install-postgres[]
99
99
helm install postgresql-druid oci://registry-1.docker.io/bitnamicharts/postgresql \
100
100
--version {{ versions.postgresql }} \
101
+ --set image.repository=bitnamilegacy/postgresql \
102
+ --set volumePermissions.image.repository=bitnamilegacy/os-shell \
103
+ --set metrics.image.repository=bitnamilegacy/postgres-exporter \
104
+ --set global.security.allowInsecureImages=true \
101
105
--set auth.database=druid \
102
106
--set auth.username=druid \
103
107
--set auth.password=druid \
Original file line number Diff line number Diff line change @@ -11,13 +11,13 @@ spec:
11
11
zookeeperConfigMapName : simple-hdfs-znode
12
12
nameNodes :
13
13
config :
14
- listenerClass : external-stable # This exposes your Stacklet outside of Kubernetes. Remove this configuration if this is not desired
14
+ listenerClass : external-stable # This exposes this role outside of Kubernetes. Remove this configuration if this is not desired
15
15
roleGroups :
16
16
default :
17
17
replicas : 2
18
18
dataNodes :
19
19
config :
20
- listenerClass : external-unstable # This exposes your Stacklet outside of Kubernetes. Remove this configuration if this is not desired
20
+ listenerClass : external-unstable # This exposes this role outside of Kubernetes. Remove this configuration if this is not desired
21
21
roleGroups :
22
22
default :
23
23
replicas : 1
Original file line number Diff line number Diff line change @@ -11,13 +11,13 @@ spec:
11
11
zookeeperConfigMapName: simple-hdfs-znode
12
12
nameNodes:
13
13
config:
14
- listenerClass: external-stable # This exposes your Stacklet outside of Kubernetes. Remove this configuration if this is not desired
14
+ listenerClass: external-stable # This exposes this role outside of Kubernetes. Remove this configuration if this is not desired
15
15
roleGroups:
16
16
default:
17
17
replicas: 2
18
18
dataNodes:
19
19
config:
20
- listenerClass: external-unstable # This exposes your Stacklet outside of Kubernetes. Remove this configuration if this is not desired
20
+ listenerClass: external-unstable # This exposes this role outside of Kubernetes. Remove this configuration if this is not desired
21
21
roleGroups:
22
22
default:
23
23
replicas: 1
Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ And setup the Postgres database:
7
7
8
8
helm install druid bitnami/postgresql \
9
9
--version=11 \
10
+ --set image.repository=bitnamilegacy/postgresql \
11
+ --set volumePermissions.image.repository=bitnamilegacy/os-shell \
12
+ --set metrics.image.repository=bitnamilegacy/postgres-exporter \
13
+ --set global.security.allowInsecureImages=true \
10
14
--set auth.username=druid \
11
15
--set auth.password=druid \
12
16
--set auth.database=druid
Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ And setup the Postgres database:
7
7
8
8
helm install druid bitnami/postgresql \
9
9
--version=11 \
10
+ --set image.repository=bitnamilegacy/postgresql \
11
+ --set volumePermissions.image.repository=bitnamilegacy/os-shell \
12
+ --set metrics.image.repository=bitnamilegacy/postgres-exporter \
13
+ --set global.security.allowInsecureImages=true \
10
14
--set auth.username=druid \
11
15
--set auth.password=druid \
12
16
--set auth.database=druid
Original file line number Diff line number Diff line change 1
1
---
2
+ global:
3
+ security:
4
+ allowInsecureImages: true # needed starting with Chart version 16.3.0 if modifying images
5
+
6
+ image:
7
+ repository: bitnamilegacy/postgresql
8
+
2
9
volumePermissions:
3
10
enabled: false
11
+ image:
12
+ repository: bitnamilegacy/os-shell
4
13
securityContext:
5
14
runAsUser: auto
6
15
16
+ metrics:
17
+ image:
18
+ repository: bitnamilegacy/postgres-exporter
19
+
7
20
primary:
8
21
extendedConfiguration: |
9
22
password_encryption=md5
Original file line number Diff line number Diff line change 39
39
fsGroup: 1000
40
40
containers:
41
41
- name: openldap
42
- image: docker.io/bitnami /openldap:2.5
42
+ image: docker.io/bitnamilegacy /openldap:2.5
43
43
env:
44
44
- name: LDAP_ADMIN_USERNAME
45
45
value: admin
Original file line number Diff line number Diff line change 1
1
---
2
+ global:
3
+ security:
4
+ allowInsecureImages: true # needed starting with Chart version 14.9.0 if modifying images
5
+
6
+ image:
7
+ repository: bitnamilegacy/minio
8
+ clientImage:
9
+ repository: bitnamilegacy/minio-client
10
+ defaultInitContainers:
11
+ volumePermissions:
12
+ image:
13
+ repository: bitnamilegacy/os-shell
14
+ console:
15
+ image:
16
+ repository: bitnamilegacy/minio-object-browser
17
+
2
18
mode: standalone
3
19
disableWebUI: false
4
20
extraEnvVars:
You can’t perform that action at this time.
0 commit comments