We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ba506b8 + 42ebc69 commit 8c88b9eCopy full SHA for 8c88b9e
README.md
@@ -47,6 +47,30 @@ volumeMounts:
47
48
```
49
50
+### Pull image from private registry
51
+
52
+###### Create a Kubernetes secret
53
54
+```bash
55
+kubectl create secret docker-registry \
56
+ my-docker-registry \
57
+ --namespace gocd \
58
+ --docker-server=<docker_server_url> \
59
+ --docker-username=<username> \
60
+ --docker-password=<password> \
61
+ --docker-email=<email>
62
+```
63
64
65
+###### Configure pod yaml
66
67
+In the pod spec, specify the `imagePullSecrets` section:
68
69
+```yaml
70
+imagePullSecrets:
71
+ - name: my-docker-registry
72
73
74
# Installation
75
76
Documentation for installation is available [here](install.md)
0 commit comments