diff options
author | efiacor <fiachra.corcoran@est.tech> | 2023-03-22 11:04:45 +0000 |
---|---|---|
committer | efiacor <fiachra.corcoran@est.tech> | 2023-04-01 11:42:10 +0100 |
commit | 1e6ad11acdc684bfba3ad2ba99a7a20a1b813fce (patch) | |
tree | 8f512d5a9fb6d4d889cfa7ab18f84c1ae14c02f4 /kubernetes/so/components/so-sdc-controller/values.yaml | |
parent | 1d93334b79aee33512fdf1dd1e3f7b17974c6d20 (diff) |
[SO-SDC-DIST] Move to use strimzi kafka tpl
Use Strimzi common tpl for so-sdc-distribution
Signed-off-by: efiacor <fiachra.corcoran@est.tech>
Change-Id: I744e5bb49b42e35a87eb8f29695b4102e3c1f507
Issue-ID: DMAAP-1876
Diffstat (limited to 'kubernetes/so/components/so-sdc-controller/values.yaml')
-rwxr-xr-x | kubernetes/so/components/so-sdc-controller/values.yaml | 33 |
1 files changed, 16 insertions, 17 deletions
diff --git a/kubernetes/so/components/so-sdc-controller/values.yaml b/kubernetes/so/components/so-sdc-controller/values.yaml index dbde74808b..81ae6ae7fd 100755 --- a/kubernetes/so/components/so-sdc-controller/values.yaml +++ b/kubernetes/so/components/so-sdc-controller/values.yaml @@ -45,13 +45,6 @@ secrets: login: '{{ .Values.db.adminName }}' password: '{{ .Values.db.adminPassword }}' passwordPolicy: required - - uid: so-sdc-kafka-secret - externalSecret: '{{ tpl (default "" .Values.config.jaasConfExternalSecret) . }}' - type: genericKV - envs: - - name: sasl.jaas.config - value: '{{ .Values.config.someConfig }}' - policy: generate #secretsFilePaths: | # - 'my file 1' @@ -83,27 +76,19 @@ mso: asdc-connections: asdc-controller1: password: 76966BDD3C7414A03F7037264FF2E6C8EEC6C28F2B67F2840A1ED857C0260FEE731D73F47F828E5527125D29FD25D3E0DE39EE44C058906BF1657DE77BF897EECA93BDC07FA64F -config: - someConfig: blah - kafka: - securityProtocol: SASL_PLAINTEXT - saslMechanism: SCRAM-SHA-512 - authType: simple - sdcTopic: - pattern: SDC-DIST - consumerGroup: so - clientId: SO-sdc-controller replicaCount: 1 minReadySeconds: 10 containerPort: &containerPort 8085 logPath: ./logs/sdc/ app: sdc-controller + service: type: ClusterIP ports: - name: http port: *containerPort + updateStrategy: type: RollingUpdate maxUnavailable: 1 @@ -134,6 +119,7 @@ resources: memory: 2Gi cpu: 1000m unlimited: {} + livenessProbe: path: /manage/health port: 8085 @@ -143,12 +129,25 @@ livenessProbe: timeoutSeconds: 10 successThreshold: 1 failureThreshold: 3 + ingress: enabled: false + nodeSelector: {} tolerations: [] affinity: {} +# Strimzi KafkaUser config +kafkaUser: + acls: + - name: SO + type: group + operations: [Read] + - name: SDC-DISTR + type: topic + patternType: prefix + operations: [Read, Write] + #Pods Service Account serviceAccount: nameOverride: so-sdc-controller |