mirror of
https://github.com/rustfs/rustfs.git
synced 2026-07-26 08:18:18 +00:00
64ba52bc1e
* add rustfs helm chart files * update readme file with helm chart * delete helm chart license file * fix typo in readme file
16 lines
376 B
YAML
16 lines
376 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: "{{ include "rustfs.fullname" . }}-test-connection"
|
|
labels:
|
|
{{- include "rustfs.labels" . | nindent 4 }}
|
|
annotations:
|
|
"helm.sh/hook": test
|
|
spec:
|
|
containers:
|
|
- name: wget
|
|
image: busybox
|
|
command: ['wget']
|
|
args: ['{{ include "rustfs.fullname" . }}:{{ .Values.service.port }}']
|
|
restartPolicy: Never
|