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

     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