rc-lastapplied.yaml 392 B

12345678910111213141516171819202122
  1. apiVersion: v1
  2. kind: ReplicationController
  3. metadata:
  4. annotations:
  5. kubectl.kubernetes.io/last-applied-configuration: |
  6. {"test":1234}
  7. name: test-rc
  8. labels:
  9. name: test-rc
  10. spec:
  11. replicas: 1
  12. template:
  13. metadata:
  14. labels:
  15. name: test-rc
  16. spec:
  17. containers:
  18. - name: test-rc
  19. image: nginx
  20. ports:
  21. - containerPort: 80