Skip to content

Commit

Permalink
#10 helm charts
Browse files Browse the repository at this point in the history
  • Loading branch information
Marek committed May 3, 2022
1 parent b695290 commit e6a3098
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 11 deletions.
2 changes: 1 addition & 1 deletion charts/eck-custom-resources-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ name: eck-custom-resources-operator
description: A Helm chart for Kubernetes
type: application
version: 0.7.0
appVersion: 0.0.1-alpha3
appVersion: 0.0.1-alpha6
20 changes: 10 additions & 10 deletions charts/eck-custom-resources-operator/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,21 @@ data:
kind: ControllerManagerConfig
manager:
health:
healthProbeBindAddress: ":8081"
healthProbeBindAddress: {{ .Values.manager.health.healthProbeBindAddress }}
metrics:
bindAddress: 127.0.0.1:8080
bindAddress: {{ .Values.manager.metrics.bindAddress }}
webhook:
port: 9443
port: {{ .Values.manager.webhook.port }}
leaderElection:
leaderElect: true
resourceName: github.com/xco-sk/eck-custom-resources
leaderElect: {{ .Values.manager.leaderElection.leaderElect }}
resourceName: eck-custom-resources.xco-sk.github.com
elasticsearch:
url: https://quickstart-es-http:9200
url: {{ .Values.elasticsearch.url }}
certificate:
secretName: quickstart-es-http-certs-public
certificateKey: ca.crt
secretName: {{ .Values.elasticsearch.certificate.secretName }}
certificateKey: {{ .Values.elasticsearch.certificate.certificateKey }}
authentication:
usernamePasswordSecret:
secretName: quickstart-es-elastic-user
userName: elastic
secretName: {{ .Values.elasticsearch.authentication.usernamePasswordSecret.secretName }}
userName: {{ .Values.elasticsearch.authentication.usernamePasswordSecret.userName }}
20 changes: 20 additions & 0 deletions charts/eck-custom-resources-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,23 @@ nodeSelector: {}
tolerations: []

affinity: {}

manager:
health:
healthProbeBindAddress: ":8081"
metrics:
bindAddress: 127.0.0.1:8080
webhook:
port: 9443
leaderElection:
leaderElect: true

elasticsearch:
url: https://quickstart-es-http:9200
certificate:
secretName: quickstart-es-http-certs-public
certificateKey: ca.crt
authentication:
usernamePasswordSecret:
secretName: quickstart-es-elastic-user
userName: elastic

0 comments on commit e6a3098

Please sign in to comment.