1- # imagePullSecrets:
1+ # imagePullSecrets:
22# - name: my-repository-secret
33image :
44 repository : tchiotludo/akhq
55 tag : latest
6- annotations : {}
7- # prometheus.io/scrape: 'true'
8- # prometheus.io/port: '8080'
9- # prometheus.io/path: '/metrics'
10- extraEnv : []
11- # # You can put directly your configuration here...
12- # - name: AKHQ_CONFIGURATION
13- # value: |
14- # akhq:
15- # secrets:
16- # docker-kafka-server:
17- # properties:
18- # bootstrap.servers: "kafka:9092"
196
7+ # custom annotations (example: for prometheus)
8+ annotations : {}
9+ # prometheus.io/scrape: 'true'
10+ # prometheus.io/port: '8080'
11+ # prometheus.io/path: '/prometheus'
12+
13+ # # You can put directly your configuration here... or add java opts or any other env vars
14+ extraEnv : []
15+ # - name: AKHQ_CONFIGURATION
16+ # value: |
17+ # akhq:
18+ # secrets:
19+ # docker-kafka-server:
20+ # properties:
21+ # bootstrap.servers: "kafka:9092"
22+ # - name: JAVA_OPTS
23+ # value: "-Djavax.net.ssl.trustStore=/usr/local/openjdk-11/lib/security/cacerts -Djavax.net.ssl.trustStorePassword=password"
2024
2125# # Or you can also use configmap for the configuration...
2226configuration : |
@@ -25,6 +29,7 @@ configuration: |
2529 access-log:
2630 enabled: false
2731 name: org.akhq.log.access
32+
2833# #... and secret for connection information
2934secrets : |
3035 akhq:
@@ -41,10 +46,13 @@ secrets: |
4146 url: "http://connect:8083"
4247 basic-auth-username: basic-auth-user
4348 basic-auth-password: basic-auth-pass
49+
4450# Any extra volumes to define for the pod (like keystore/truststore)
4551extraVolumes : []
52+
4653# Any extra volume mounts to define for the akhq container
4754extraVolumeMounts : []
55+
4856# Add your own init container or uncomment and modify the example.
4957initContainers : {}
5058# create-keystore:
@@ -54,6 +62,14 @@ initContainers: {}
5462# - mountPath: /tmp
5563# name: certs
5664
65+ securityContext : {}
66+ # capabilities:
67+ # drop:
68+ # - ALL
69+ # # readOnlyRootFilesystem: true
70+ # runAsNonRoot: true
71+ # runAsUser: 1000
72+
5773service :
5874 enabled : true
5975 type : ClusterIP
@@ -86,4 +102,4 @@ nodeSelector: {}
86102
87103tolerations : []
88104
89- affinity : {}
105+ affinity : {}
0 commit comments