openshift-console: bump to v4.10.0, helm chart v0.3.6

This commit is contained in:
ace
2023-06-12 19:37:57 +03:00
parent 5b6043237d
commit e21e9f1b63
16 changed files with 618 additions and 0 deletions

View File

@ -0,0 +1,15 @@
apiVersion: v1
kind: Pod
metadata:
name: "{{ include "openshift-console.fullname" . }}-test-connection"
labels:
{{- include "openshift-console.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test-success
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "openshift-console.fullname" . }}:{{ .Values.service.port }}']
restartPolicy: Never