Skip to content

Commit bb55962

Browse files
committed
introduce helm chart version variable
1 parent ea0402e commit bb55962

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

deploy-manage/deploy/cloud-on-k8s/managing-deployments-using-helm-chart.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,14 +137,14 @@ helm install es-kb-quickstart elastic/eck-stack -n elastic-stack --create-namesp
137137

138138
For illustration purposes, the ingress objects created by the previous command will look similar to the following:
139139

140-
```yaml
140+
```yaml subs=true
141141
# Source: eck-stack/charts/eck-elasticsearch/templates/ingress.yaml
142142
apiVersion: networking.k8s.io/v1
143143
kind: Ingress
144144
metadata:
145145
name: elasticsearch
146146
labels:
147-
helm.sh/chart: eck-elasticsearch-0.14.1
147+
helm.sh/chart: eck-elasticsearch-{{eck_helm_chart_version}}
148148
app.kubernetes.io/name: eck-elasticsearch
149149
app.kubernetes.io/instance: es-kb-quickstart
150150
app.kubernetes.io/managed-by: Helm
@@ -167,7 +167,7 @@ kind: Ingress
167167
metadata:
168168
name: es-kb-quickstart-eck-kibana
169169
labels:
170-
helm.sh/chart: eck-kibana-0.14.1
170+
helm.sh/chart: eck-kibana-{{eck_helm_chart_version}}
171171
app.kubernetes.io/name: eck-kibana
172172
app.kubernetes.io/instance: es-kb-quickstart
173173
app.kubernetes.io/managed-by: Helm

docset.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,8 @@ subs:
276276
agent-pull: "https://github.com/elastic/elastic-agent/pull/"
277277
es-pull: "https://github.com/elastic/elasticsearch/pull/"
278278
kib-pull: "https://github.com/elastic/kibana/pull/"
279-
eck_helm_minimum_version: "3.2.0"
279+
eck_helm_minimum_version: 3.2.0
280+
eck_helm_chart_version: 0.17.0
280281
eck_resources_list: "Elasticsearch, Kibana, APM Server, Beats, Elastic Agent, Elastic Maps Server, and Logstash"
281282
eck_resources_list_short: "APM Server, Beats, Elastic Agent, Elastic Maps Server, and Logstash"
282283
heroku: "Elasticsearch Add-on for Heroku"

0 commit comments

Comments
 (0)