You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* add parameter --registry-proxy-path
* fix typo
* set REGISTRY_PROXY_PATH only if twoRegistries is enabled
* add RegistryProxyPath to jenkinsfile Templates
* temporarily change which branch to pull during integration tests
* Jenkinsfile.ftl aktualisieren
Co-authored-by: Thomas <thomas@thomasmichael.de>
* Apply suggestion from @ThomasMichael1811
---------
Co-authored-by: Thomas <thomas@thomasmichael.de>
Copy file name to clipboardExpand all lines: README.md
+19-18Lines changed: 19 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -320,24 +320,25 @@ That is, if you pass a param via CLI, for example, it will overwrite the corresp
320
320
321
321
###### Registry
322
322
323
-
| CLI | Config | Default | Type | Description |
324
-
|-----|--------|---------|------|-------------|
325
-
|`--registry`|`registry.active`|`false`| Boolean | Installs a simple cluster-local registry for demonstration purposes. Warning: Registry does not provide authentication! |
326
-
|`--internal-registry-port`|`registry.internalPort`|`30000`| Integer | Port of registry registry. Ignored when a registry*url params are set |
327
-
|`--registry-url`|`registry.url`|`''`| String | The url of your external registry, used for pushing images |
328
-
|`--registry-path`|`registry.path`|`''`| String | Optional when registry-url is set |
329
-
|`--registry-username`|`registry.username`|`''`| String | Optional when registry-url is set |
330
-
|`--registry-password`|`registry.password`|`''`| String | Optional when registry-url is set |
331
-
|`--registry-proxy-url`|`registry.proxyUrl`|`''`| String | The url of your proxy-registry. Used in pipelines to authorize pull base images |
332
-
|`--registry-proxy-username`|`registry.proxyUsername`|`''`| String | Use with registry-proxy-url, added to Jenkins as credentials and created as pull secrets |
333
-
|`--registry-proxy-password`|`registry.proxyPassword`|`''`| String | Use with registry-proxy-url, added to Jenkins as credentials and created as pull secrets |
334
-
|`--registry-username-read-only`|`registry.readOnlyUsername`|`''`| String | Optional alternative username for registry-url with read-only permissions |
335
-
|`--registry-password-read-only`|`registry.readOnlyPassword`|`''`| String | Optional alternative password for registry-url with read-only permissions |
336
-
|`--create-image-pull-secrets`|`registry.createImagePullSecrets`|`false`| Boolean | Create image pull secrets for registry and proxy-registry for all GOP namespaces |
337
-
| - |`registry.helm.chart`|`'docker-registry'`| String | Name of the Helm chart |
338
-
| - |`registry.helm.repoURL`|`'https://helm.twun.io'`| String | Repository url from which the Helm chart should be obtained |
339
-
| - |`registry.helm.version`|`'2.2.3'`| String | The version of the Helm chart to be installed |
340
-
| - |`registry.helm.values`|`[:]`| Map | Helm values of the chart |
|`--registry`|`registry.active`|`false`| Boolean | Installs a simple cluster-local registry for demonstration purposes. Warning: Registry does not provide authentication! |
326
+
|`--internal-registry-port`|`registry.internalPort`|`30000`| Integer | Port of registry registry. Ignored when a registry*url params are set |
327
+
|`--registry-url`|`registry.url`|`''`| String | The url of your external registry, used for pushing images |
328
+
|`--registry-path`|`registry.path`|`''`| String | Optional when registry-url is set |
329
+
|`--registry-username`|`registry.username`|`''`| String | Optional when registry-url is set |
330
+
|`--registry-password`|`registry.password`|`''`| String | Optional when registry-url is set |
331
+
|`--registry-proxy-url`|`registry.proxyUrl`|`''`| String | The url of your proxy-registry. Used in pipelines to authorize pull base images |
332
+
|`--registry-proxy-path`|`registry.proxyPath`|`''`| String | Optional when registry-proxy-url is set and the registry is running on a non root web path. |
333
+
|`--registry-proxy-username`|`registry.proxyUsername`|`''`| String | Use with registry-proxy-url, added to Jenkins as credentials and created as pull secrets |
334
+
|`--registry-proxy-password`|`registry.proxyPassword`|`''`| String | Use with registry-proxy-url, added to Jenkins as credentials and created as pull secrets |
335
+
|`--registry-username-read-only`|`registry.readOnlyUsername`|`''`| String | Optional alternative username for registry-url with read-only permissions |
336
+
|`--registry-password-read-only`|`registry.readOnlyPassword`|`''`| String | Optional alternative password for registry-url with read-only permissions |
337
+
|`--create-image-pull-secrets`|`registry.createImagePullSecrets`|`false`| Boolean | Create image pull secrets for registry and proxy-registry for all GOP namespaces |
338
+
| - |`registry.helm.chart`|`'docker-registry'`| String | Name of the Helm chart |
339
+
| - |`registry.helm.repoURL`|`'https://helm.twun.io'`| String | Repository url from which the Helm chart should be obtained |
340
+
| - |`registry.helm.version`|`'2.2.3'`| String | The version of the Helm chart to be installed |
341
+
| - |`registry.helm.values`|`[:]`| Map | Helm values of the chart |
Copy file name to clipboardExpand all lines: docs/configuration.schema.json
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -772,6 +772,10 @@
772
772
"type" : [ "string", "null" ],
773
773
"description" : "Use with registry-proxy-url, added to Jenkins as credentials and created as pull secrets, when create-image-pull-secrets is set."
774
774
},
775
+
"proxyPath" : {
776
+
"type" : [ "string", "null" ],
777
+
"description" : "Optional when registry-proxy-url is set and the registry is running on a non root web path."
778
+
},
775
779
"proxyUrl" : {
776
780
"type" : [ "string", "null" ],
777
781
"description" : "The url of your proxy-registry. Used in pipelines to authorize pull base images. Use in conjunction with petclinic base image. Used in helm charts when create-image-pull-secrets is set. Use in conjunction with helm.*image fields."
Copy file name to clipboardExpand all lines: src/main/groovy/com/cloudogu/gitops/config/ConfigConstants.groovy
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,7 @@ interface ConfigConstants {
16
16
StringREGISTRY_PASSWORD_DESCRIPTION='Optional when registry-url is set'
17
17
18
18
StringREGISTRY_PROXY_URL_DESCRIPTION='The url of your proxy-registry. Used in pipelines to authorize pull base images. Use in conjunction with petclinic base image. Used in helm charts when create-image-pull-secrets is set. Use in conjunction with helm.*image fields.'
19
+
StringREGISTRY_PROXY_PATH_DESCRIPTION='Optional when registry-proxy-url is set and the registry is running on a non root web path.'
19
20
StringREGISTRY_PROXY_USERNAME_DESCRIPTION='Use with registry-proxy-url, added to Jenkins as credentials and created as pull secrets, when create-image-pull-secrets is set.'
20
21
StringREGISTRY_PROXY_PASSWORD_DESCRIPTION='Use with registry-proxy-url, added to Jenkins as credentials and created as pull secrets, when create-image-pull-secrets is set.'
0 commit comments