CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/test/kubernetes/thinkphp/templates/tests/test-connection.yaml
Views: 11705
1
apiVersion: v1
2
kind: Pod
3
metadata:
4
name: "{{ include "thinkphp.fullname" . }}-test-connection"
5
labels:
6
{{- include "thinkphp.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 "thinkphp.fullname" . }}:{{ .Values.service.port }}']
15
restartPolicy: Never
16
17