File tree Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change @@ -106,6 +106,45 @@ namespace:
106
106
107
107
.. include:: /includes/troubleshoot-k8s.rst
108
108
109
+ Install a Specific Daily Build with Helm
110
+ ----------------------------------------
111
+
112
+ MongoDB rebuilds |k8s-op-short| images every day to integrate the
113
+ latest security and OS updates.
114
+
115
+ By default, ``helm`` installs the latest build for the version of
116
+ the |k8s-op-short| you specify.
117
+
118
+ To install an earlier build, specify the build ID as a parameter with
119
+ ``--set build=<build-id>``. Build IDs are always in the format
120
+ ``-b<YYYYMMDD>T000000Z``, where ``<YYYYMMDD>`` is the date that the
121
+ build you want to use was created.
122
+
123
+ .. example::
124
+
125
+ This example shows how to install the |k8s-op-short| with the latest
126
+ image:
127
+
128
+ .. code-block:: sh
129
+ :copyable: false
130
+
131
+ helm install <chart-name> helm_chart \
132
+ --values helm_chart/values.yaml \
133
+
134
+ This example shows how to install the |k8s-op-short| with the image
135
+ created at midnight on February 5th, 2021:
136
+
137
+ .. code-block:: sh
138
+ :copyable: false
139
+
140
+ helm install <chart-name> helm_chart \
141
+ --values helm_chart/values.yaml \
142
+ --set build=-b20210205T000000Z
143
+
144
+ .. note::
145
+
146
+ MongoDB recommends using the default (latest) build.
147
+
109
148
Next Steps
110
149
----------
111
150
You can’t perform that action at this time.
0 commit comments