Skip to content

Commit 25396b3

Browse files
committed
Showroom content changes
1 parent 244cb4a commit 25396b3

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

content/modules/ROOT/pages/04-helm.adoc

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ This should display the version, it should look something like this.
3434
[.console-output]
3535
[source,bash,subs="attributes+,+macros"]
3636
----
37-
{v3.9.0+3.el8+ge09b16a}
37+
v3.12.1+11.el8+g8cc4ba6
3838
----
3939

4040
Helm as a package manager can be used to install a Helm chart into a kubernetes cluster
@@ -68,6 +68,12 @@ cd ~/openshift-gitops-workshop/content/modules/ROOT/examples/bgd-helm-chart
6868
Next if you run the `ls` command you should see two files: `Chart.yaml` and `values.yaml`, as well
6969
as a directory called templates. Let's have a look at these in more detail.
7070

71+
[.console-input]
72+
[source,bash,subs="attributes+,+macros"]
73+
----
74+
cat ./chart.yaml
75+
----
76+
7177
.link:https://github.com/OpenShiftDemos/openshift-gitops-workshop/blob/{gitops_revision}/content/modules/ROOT/examples/bgd-helm-chart/Chart.yaml[Chart.yaml,window='_blank']
7278
[source,yaml,subs="+macros,attributes+"]
7379
----
@@ -76,6 +82,12 @@ include::ROOT:example$bgd-helm-chart/Chart.yaml[]
7682

7783
This file is the link:https://helm.sh/docs/topics/charts/#the-chartyaml-file[chart definition] which specifies name, version and other characteristics of the chart.
7884

85+
[.console-input]
86+
[source,bash,subs="attributes+,+macros"]
87+
----
88+
cat ./values.yaml
89+
----
90+
7991
.link:https://github.com/OpenShiftDemos/openshift-gitops-workshop/blob/{gitops_revision}/content/modules/ROOT/examples/bgd-helm-chart/values.yaml[values.yaml,window='_blank']
8092
[source,yaml,subs="+macros,attributes+"]
8193
----

0 commit comments

Comments
 (0)