mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
updating images' tags and support org verification toggle (#9945)
* updating images' tags and support org verification toggle Signed-off-by: Vardit Natanson <v.natanson@travelaudience.com> * fixing trailing space Signed-off-by: Vardit Natanson <v.natanson@travelaudience.com>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
13027c8252
commit
8bceed5895
@@ -1,6 +1,6 @@
|
||||
name: sonatype-nexus
|
||||
version: 1.14.1
|
||||
appVersion: 3.13.0-01
|
||||
version: 1.15.0
|
||||
appVersion: 3.14.0-04
|
||||
description: Sonatype Nexus is an open source repository manager
|
||||
keywords:
|
||||
- artifacts
|
||||
|
||||
@@ -152,6 +152,7 @@ If `nexusProxy.env.cloudIamAuthEnabled` is set to `true` the following variables
|
||||
| `nexusProxy.env.clientSecret` | GCP OAuth client Secret | `nil` |
|
||||
| `nexusProxy.env.organizationId` | GCP organization ID | `nil` |
|
||||
| `nexusProxy.env.redirectUrl` | OAuth callback url. example `https://nexus.example.com/oauth/callback` | `nil` |
|
||||
| `nexusProxy.env.requiredMembershipVerification` | Whether users presenting valid JWT tokens must still be verified for membership within the GCP organization. | `true` |
|
||||
| `nexusProxy.secrets.keystore` | base-64 encoded value of the keystore file needed for the proxy to sign user tokens. Example: cat keystore.jceks | base64 | `nil` |
|
||||
| `nexusProxy.secrets.password` | Password to the Java Keystore file | `nil` |
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
{{- if .Values.statefulset.enabled }}
|
||||
apiVersion: apps/v1beta1
|
||||
apiVersion: apps/v1
|
||||
kind: StatefulSet
|
||||
{{- else }}
|
||||
apiVersion: apps/v1beta2
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
{{- end }}
|
||||
metadata:
|
||||
@@ -155,6 +155,8 @@ spec:
|
||||
value: "60000"
|
||||
- name: SESSION_TTL
|
||||
value: "86400000"
|
||||
- name: JWT_REQUIRES_MEMBERSHIP_VERIFICATION
|
||||
value: {{ .Values.nexusProxy.env.requiredMembershipVerification | quote }}
|
||||
{{- end }}
|
||||
ports:
|
||||
- containerPort: {{ .Values.nexusProxy.targetPort }}
|
||||
|
||||
@@ -10,7 +10,7 @@ deploymentStrategy: {}
|
||||
|
||||
nexus:
|
||||
imageName: quay.io/travelaudience/docker-nexus
|
||||
imageTag: 3.13.0_alpine_3.8.1
|
||||
imageTag: 3.14.0
|
||||
imagePullPolicy: IfNotPresent
|
||||
env:
|
||||
- name: install4jAddVmParams
|
||||
@@ -63,7 +63,7 @@ nexusProxy:
|
||||
enabled: true
|
||||
# svcName: proxy-svc
|
||||
imageName: quay.io/travelaudience/docker-nexus-proxy
|
||||
imageTag: 2.3.0
|
||||
imageTag: 2.4.0
|
||||
imagePullPolicy: IfNotPresent
|
||||
port: 8080
|
||||
targetPort: 8080
|
||||
@@ -78,6 +78,7 @@ nexusProxy:
|
||||
# clientSecret: ""
|
||||
# organizationId: ""
|
||||
# redirectUrl: ""
|
||||
# requiredMembershipVerification: "true"
|
||||
# secrets:
|
||||
# keystore: ""
|
||||
# password: ""
|
||||
@@ -109,7 +110,7 @@ persistence:
|
||||
nexusBackup:
|
||||
enabled: false
|
||||
imageName: quay.io/travelaudience/docker-nexus-backup
|
||||
imageTag: 1.3.0
|
||||
imageTag: 1.4.0
|
||||
imagePullPolicy: IfNotPresent
|
||||
env:
|
||||
targetBucket:
|
||||
|
||||
Reference in New Issue
Block a user