k8s.io/kubernetes@v1.31.0-alpha.0.0.20240520171757-56147500dadc/test/fixtures/pkg/kubectl/cmd/apply/rc.yaml (about)

     1  apiVersion: v1
     2  kind: ReplicationController
     3  metadata:
     4    name: test-rc
     5    namespace: test
     6    labels:
     7      name: test-rc
     8  spec:
     9    replicas: 1
    10    template:
    11      metadata:
    12        labels:
    13          name: test-rc
    14      spec:
    15        containers:
    16          - name: test-rc
    17            image: nginx
    18            ports:
    19            - containerPort: 80