mirror of
https://github.com/kubernetes/kubectl.git
synced 2026-05-28 04:35:50 -04:00
19 lines
319 B
YAML
19 lines
319 B
YAML
apiVersion: v1
|
|
kind: ReplicationController
|
|
metadata:
|
|
name: test-rc
|
|
namespace: test
|
|
labels:
|
|
name: test-rc
|
|
spec:
|
|
replicas: 1
|
|
template:
|
|
metadata:
|
|
labels:
|
|
name: test-rc
|
|
spec:
|
|
containers:
|
|
- name: test-rc
|
|
image: nginx
|
|
ports:
|
|
- containerPort: 80
|