Updated the sample for pod and svc

This commit is contained in:
2021-10-22 10:52:40 +07:00
parent 5d23859c51
commit 65f0a7ccc7
2 changed files with 54 additions and 0 deletions

28
sample/private-pod.yaml Normal file
View File

@@ -0,0 +1,28 @@
apiVersion: v1
kind: Pod
metadata:
name: myapp
spec:
containers:
- name: myapp
image: registry.kh.cubetiqs.com/myapp
imagePullSecrets:
- name: regcred
---
apiVersion: v1
kind: Service
metadata:
name: myapp
namespace: default
labels:
app: myapp
spec:
externalTrafficPolicy: Local
ports:
- name: http
port: 80
protocol: TCP
targetPort: 80
selector:
app: myapp
type: LoadBalancer