Skip to content

Commit

Permalink
memcached_proxy: fix subcharts values with dash in the name
Browse files Browse the repository at this point in the history
 - see helm/helm#2192

Change-Id: I3f95e1d28a7471d7bbca5104757a0f1346fcf270
Signed-off-by: Jean-Francois Weber-Marx <jf.webermarx@criteo.com>
  • Loading branch information
jfwm2 committed Feb 17, 2020
1 parent 8e9e890 commit d4fd79a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions memcached_proxy/chart/kubernetes/templates/deployment.yaml
Expand Up @@ -28,10 +28,10 @@ spec:
command: ["./memcached_cluster_proxy"]
args:
- "-consul-addr=localhost:8500"
- "-source-cluster-name={{ .Values.memcached.source-cluster }}"
- "-destination-cluster-name={{ .Values.memcached.destination-cluster }}"
- "-source-datacenter={{ .Values.memcached.source-dc }}"
- "-destination-datacenter={{ .Values.memcached.destination-dc }}"
- "-source-cluster-name={{ .Values.memcached.sourceCluster" }}"
- "-destination-cluster-name={{ .Values.memcached.destinationCluster" }}"
- "-source-datacenter={{ .Values.memcached.sourceDataCenter" }}"
- "-destination-datacenter={{ .Values.memcached.destinationDataCenter" }}"
- "-p={{ .Values.memcached.port }}"

ports:
Expand Down
8 changes: 4 additions & 4 deletions memcached_proxy/mproxy98.kubes02.par.preprod.yaml
Expand Up @@ -7,10 +7,10 @@ memcached:
replicaCount: 2
port: 11220
minTimeInterval: 10
source-cluster: memcached-mems98-test
source-dc: par
destination-cluster: memcached-mems99-test
destination-dc: par
sourceCluster: memcached-mems98-test
sourceDataCenter: par
destinationCluster: memcached-mems99-test
destinationDataCenter: par

memcachedSniffer:
enabled: false
Expand Down

0 comments on commit d4fd79a

Please sign in to comment.