mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-11-24 05:11:09 +00:00
19 lines
301 B
YAML
19 lines
301 B
YAML
apiVersion: v1
|
|
kind: ReplicationController
|
|
metadata:
|
|
name: test-rc
|
|
labels:
|
|
name: test-rc
|
|
spec:
|
|
replicas: 1
|
|
template:
|
|
metadata:
|
|
labels:
|
|
name: test-rc
|
|
spec:
|
|
containers:
|
|
- name: test-rc
|
|
image: nginx
|
|
ports:
|
|
- containerPort: 80
|