CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/test/kubernetes/lucee/templates/tests/test-connection.yaml
Views: 1904
1
apiVersion: v1
2
kind: Pod
3
metadata:
4
name: "{{ include "lucee.fullname" . }}-test-connection"
5
labels:
6
{{- include "lucee.labels" . | nindent 4 }}
7
annotations:
8
"helm.sh/hook": test
9
spec:
10
containers:
11
- name: wget
12
image: busybox
13
command: ['wget']
14
args: ['{{ include "lucee.fullname" . }}:{{ .Values.service.port }}']
15
restartPolicy: Never
16
17