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

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