rc-lastapplied-args.yaml 471 B

123456789101112131415161718192021222324
  1. apiVersion: v1
  2. kind: ReplicationController
  3. metadata:
  4. annotations:
  5. kubectl.kubernetes.io/last-applied-configuration: |
  6. {"args":"-random_flag=%s@domain.com"}
  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. args:
  21. - -random_flag=%s@domain.com
  22. ports:
  23. - containerPort: 80