kubernetes/test/fixtures/pkg/kubectl/cmd/apply/rc-no-annotation.yaml

apiVersion: v1
kind: ReplicationController
metadata:
  name: no-annotation
  labels:
    name: no-annotation
spec:
  replicas: 1
  template:
    metadata:
      labels:
        name: no-annotation
    spec:
      containers:
        - name: no-annotation
          image: nginx
          ports:
          - containerPort: 80