Skip to content

Commit 0888bcc

Browse files
zach-carrjwilliams-mongo
authored andcommitted
(DOCSP-14263) Container image daily builds (#504)
* (DOCSP-14263) Container image daily builds * wording * add word * copy feedback * typo
1 parent be39526 commit 0888bcc

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

source/tutorial/install-k8s-operator.txt

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,45 @@ namespace:
106106

107107
.. include:: /includes/troubleshoot-k8s.rst
108108

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+
109148
Next Steps
110149
----------
111150

0 commit comments

Comments
 (0)