NEXUS-34974 Publish nxrm helm charts to Sonatype helm repo and Artifact Hub

This commit is contained in:
spryhoda
2022-09-13 15:33:07 +03:00
parent 595206fdc9
commit 8123c3db21
24 changed files with 1444 additions and 4 deletions

View File

@@ -0,0 +1,15 @@
# This test checks that the server is up and running by making a wget
apiVersion: v1
kind: Pod
metadata:
name: "{{ .Release.Name }}-test-connection"
annotations:
"helm.sh/hook": test
"helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded,hook-failed
spec:
containers:
- name: {{ .Release.Name }}-test-connection
image: busybox
command: ['wget']
args: ['{{ include "nexus.fullname" . }}:{{ .Values.nexus.nexusPort }}']
restartPolicy: Never