File tree Expand file tree Collapse file tree 3 files changed +46
-2
lines changed Expand file tree Collapse file tree 3 files changed +46
-2
lines changed Original file line number Diff line number Diff line change @@ -101,6 +101,50 @@ replacement:
101
101
-- values helm_chart/values-openshift.yaml
102
102
oc apply -f operator.yaml
103
103
104
+ k8sonlineupgrade : |
105
+
106
+ .. code-block:: sh
107
+
108
+ helm template helm_chart > operator.yaml \
109
+ -- values helm_chart/values.yaml
110
+ kubectl apply -f operator.yaml
111
+
112
+ .. include:: /includes/install/helm-install-k8s-options.rst
113
+
114
+ .. note::
115
+
116
+ You can also pass these values as options when you apply the
117
+ Helm Chart:
118
+
119
+ .. code-block:: sh
120
+
121
+ helm template --set namespace=<testNamespace> \
122
+ helm_chart > operator.yaml \
123
+ -- values helm_chart/values.yaml
124
+ kubectl apply -f operator.yaml
125
+
126
+ osonlineupgrade : |
127
+
128
+ .. code-block:: sh
129
+
130
+ helm template helm_chart > operator.yaml \
131
+ -- values helm_chart/values-openshift.yaml
132
+ oc apply -f operator.yaml
133
+
134
+ .. include:: /includes/install/helm-install-os-options.rst
135
+
136
+ .. note::
137
+
138
+ You can also pass these values as options when you apply the Helm
139
+ Chart:
140
+
141
+ .. code-block:: sh
142
+
143
+ helm template --set registry.imagePullSecrets=<openshift-pull-secret> \
144
+ helm_chart > operator.yaml \
145
+ -- values helm_chart/values-openshift.yaml
146
+ oc apply -f operator.yaml
147
+
104
148
---
105
149
title : " Connect to the internet."
106
150
level : 4
Original file line number Diff line number Diff line change @@ -7,5 +7,5 @@ stepnum: 1
7
7
replacement :
8
8
method : " Upgrade the |k8s-op-short| using the following ``helm`` command:"
9
9
content : |
10
- {{k8sonline }}
10
+ {{k8sonlineupgrade }}
11
11
...
Original file line number Diff line number Diff line change @@ -7,5 +7,5 @@ stepnum: 1
7
7
replacement :
8
8
method : " Upgrade the |k8s-op-short| using the following ``helm`` command:"
9
9
content : |
10
- {{osonline }}
10
+ {{osonlineupgrade }}
11
11
...
You can’t perform that action at this time.
0 commit comments