mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
7f067d7fcd
Signed-off-by: Shylaja Devadiga <shylaja.devadiga@suse.com>
34 lines
601 B
YAML
34 lines
601 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: test-clusterip
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
k8s-app: nginx-app-clusterip
|
|
replicas: 2
|
|
template:
|
|
metadata:
|
|
labels:
|
|
k8s-app: nginx-app-clusterip
|
|
spec:
|
|
containers:
|
|
- name: nginx
|
|
image: shylajarancher19/shylajaarm64:v1.0
|
|
ports:
|
|
- containerPort: 80
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
labels:
|
|
k8s-app: nginx-app-clusterip
|
|
name: nginx-clusterip-svc
|
|
namespace: default
|
|
spec:
|
|
type: ClusterIP
|
|
ports:
|
|
- port: 80
|
|
selector:
|
|
k8s-app: nginx-app-clusterip
|