1
1
---
2
2
title : " Change to the directory in which you cloned the repository."
3
- level : 4
3
+ level : 4
4
4
ref : helm-master-cd
5
5
---
6
6
title : " {{method}}"
@@ -10,20 +10,20 @@ replacement:
10
10
k8sonline : |
11
11
12
12
.. code-block:: sh
13
-
13
+
14
14
helm_chart > operator.yaml \
15
15
-- values helm_chart/values.yaml
16
16
kubectl apply -f operator.yaml
17
-
17
+
18
18
.. include:: /includes/install/helm-install-k8s-options.rst
19
19
20
- .. note::
21
-
22
- You can also pass these values as options when you apply the
20
+ .. note::
21
+
22
+ You can also pass these values as options when you apply the
23
23
Helm Chart:
24
-
24
+
25
25
.. code-block:: sh
26
-
26
+
27
27
helm template --set namespace=<testNamespace> \
28
28
helm_chart > operator.yaml \
29
29
-- values helm_chart/values.yaml
@@ -32,75 +32,75 @@ replacement:
32
32
k8soffline : |
33
33
34
34
.. code-block:: sh
35
-
35
+
36
36
helm template --set registry.pullPolicy=IfNotPresent \
37
37
helm_chart > operator.yaml \
38
38
-- values helm_chart/values.yaml
39
39
kubectl apply -f operator.yaml
40
-
40
+
41
41
.. include:: /includes/install/helm-install-k8s-options.rst
42
-
43
- .. note::
44
-
42
+
43
+ .. note::
44
+
45
45
You can also pass these values as options when you apply the Helm
46
46
Chart:
47
-
47
+
48
48
.. code-block:: sh
49
-
49
+
50
50
helm template --set registry.pullPolicy=IfNotPresent \
51
51
--set namespace=<testNamespace> \
52
52
helm_chart > operator.yaml \
53
53
-- values helm_chart/values.yaml
54
- kubectl apply -f operator.yaml
55
-
54
+ kubectl apply -f operator.yaml
55
+
56
56
osonline : |
57
57
58
58
.. code-block:: sh
59
-
59
+
60
60
helm_chart > operator.yaml \
61
61
-- values helm_chart/values-openshift.yaml
62
62
oc apply -f operator.yaml
63
-
63
+
64
64
.. include:: /includes/install/helm-install-os-options.rst
65
-
66
- .. note::
67
-
65
+
66
+ .. note::
67
+
68
68
You can also pass these values as options when you apply the Helm
69
69
Chart:
70
-
70
+
71
71
.. code-block:: sh
72
-
72
+
73
73
helm template --set registry.imagePullSecrets=<openshift-pull-secret> \
74
74
helm_chart > operator.yaml \
75
75
-- values helm_chart/values-openshift.yaml
76
- oc apply -f operator.yaml
77
-
76
+ oc apply -f operator.yaml
77
+
78
78
osoffline : |
79
79
80
80
.. code-block:: sh
81
-
81
+
82
82
helm template --set registry.pullPolicy=IfNotPresent \
83
83
--set registry.imagePullSecrets=<openshift-pull-secret> \
84
84
helm_chart > operator.yaml \
85
85
-- values helm_chart/values-openshift.yaml
86
86
oc apply -f operator.yaml
87
-
87
+
88
88
.. include:: /includes/install/helm-install-os-options.rst
89
-
90
- .. note::
91
-
89
+
90
+ .. note::
91
+
92
92
You can also pass these values as options when you apply the Helm
93
93
Chart:
94
-
94
+
95
95
.. code-block:: sh
96
-
96
+
97
97
helm template --set registry.pullPolicy=IfNotPresent \
98
98
--set registry.imagePullSecrets=<openshift-pull-secret> \
99
99
--set namespace=<testNamespace> \
100
100
helm_chart > operator.yaml \
101
101
-- values helm_chart/values-openshift.yaml
102
- oc apply -f operator.yaml
103
-
102
+ oc apply -f operator.yaml
103
+
104
104
---
105
105
title : " Connect to the internet."
106
106
level : 4
@@ -110,16 +110,16 @@ title: "Disconnect from the internet."
110
110
level : 4
111
111
ref : helm-master-disconnect-internet
112
112
---
113
- title : " Add the name of your ``<openshift-pull-secret>`` to the
114
- ``registry.imagePullSecrets`` setting in the
113
+ title : " Add the name of your ``<openshift-pull-secret>`` to the
114
+ ``registry.imagePullSecrets`` setting in the
115
115
``helm_chart/values-openshift.yaml`` file:"
116
116
level : 4
117
117
ref : helm-master-openshift-pull-secret
118
118
content : |
119
119
120
120
.. code-block:: sh
121
121
:emphasize-lines: 3
122
-
122
+
123
123
registry:
124
124
# The pull secret must be specified
125
125
imagePullSecrets: <openshift-pull-secret>
@@ -163,17 +163,17 @@ replacement:
163
163
164
164
.. code-block:: sh
165
165
166
- docker import mongodb-enterprise-operator.tar quay.io/ mongodb/mongodb -enterprise-operator:<op-version> ; \
167
- docker import mongodb-enterprise-database.tar quay.io/ mongodb/mongodb -enterprise-database:<op-version> ; \
168
- docker import mongodb-enterprise-ops-manager.tar quay.io/ mongodb/mongodb -enterprise-ops-manager:<om-version>-operator<op-version>
169
-
166
+ docker load -i mongodb-enterprise-operator.tar ; \
167
+ docker load -i mongodb-enterprise-database.tar ; \
168
+ docker load -i mongodb-enterprise-ops-manager.tar
169
+
170
170
rhimport : |
171
-
171
+
172
172
.. code-block:: sh
173
173
174
- docker import mongodb-enterprise-operator.tar registry.connect.redhat.com/ mongodb/mongodb -enterprise-operator:<op-version> ; \
175
- docker import mongodb-enterprise-database.tar registry.connect.redhat.com/ mongodb/mongodb -enterprise-database:<op-version> ; \
176
- docker import mongodb-enterprise-ops-manager.tar registry.connect.redhat.com/ mongodb/mongodb -enterprise-ops-manager:<om-version>-operator<op-version>
174
+ docker load -i mongodb-enterprise-operator.tar ; \
175
+ docker load -i mongodb-enterprise-database.tar ; \
176
+ docker load -i mongodb-enterprise-ops-manager.tar
177
177
178
178
---
179
179
title : " Use ``docker`` to request the files."
@@ -198,7 +198,7 @@ replacement:
198
198
199
199
versions : |
200
200
201
- .. include:: /includes/install/replace-op-and-om-versions.rst
201
+ .. include:: /includes/install/replace-op-and-om-versions.rst
202
202
...
203
203
204
204
0 commit comments