|
123456789101112131415161718192021222324252627282930313233343536 |
- apiVersion: apps/v1
- kind: Deployment
- metadata:
- name: ci4s-auth-deployment
- namespace: argo
- spec:
- replicas: 1
- selector:
- matchLabels:
- app: ci4s-auth
- template:
- metadata:
- labels:
- app: ci4s-auth
- spec:
- containers:
- - name: ci4s-auth
- image: 172.20.32.187/ci4s/ci4s-auth:20240401
- ports:
- - containerPort: 9200
-
- ---
- apiVersion: v1
- kind: Service
- metadata:
- name: ci4s-auth-service
- namespace: argo
- spec:
- type: NodePort
- ports:
- - port: 9200
- nodePort: 31206
- protocol: TCP
- selector:
- app: ci4s-auth
-
|