github.com/opendevstack/tailor@v1.3.5-0.20220119161809-cab064e60a67/internal/test/e2e/testdata/deploymentconfig/0/want.out (about)

     1  Comparing templates in deploymentconfig/0 with OCP namespace {{ .Project }}.
     2  Limiting resources to dc,secret.
     3  Found 0 resources in OCP cluster (current state) and 2 resources in processed templates (desired state).
     4  
     5  + secret/foo-user to create
     6  Secret drift is hidden. Use --reveal-secrets to see details.
     7  + dc/foo to create
     8  --- Current State (OpenShift cluster)
     9  +++ Desired State (Processed template)
    10  @@ -1 +1,81 @@
    11  +apiVersion: apps.openshift.io/v1
    12  +kind: DeploymentConfig
    13  +metadata:
    14  +  labels:
    15  +    app: foo
    16  +  name: foo
    17  +spec:
    18  +  replicas: 1
    19  +  revisionHistoryLimit: 10
    20  +  selector:
    21  +    app: foo
    22  +  strategy:
    23  +    activeDeadlineSeconds: 21600
    24  +    resources: {}
    25  +    rollingParams:
    26  +      intervalSeconds: 1
    27  +      maxSurge: 25%
    28  +      maxUnavailable: 25%
    29  +      timeoutSeconds: 600
    30  +      updatePeriodSeconds: 1
    31  +    type: Rolling
    32  +  template:
    33  +    metadata:
    34  +      labels:
    35  +        app: foo
    36  +    spec:
    37  +      containers:
    38  +      - env:
    39  +        - name: FOO
    40  +          value: abc
    41  +        - name: QUX
    42  +          valueFrom:
    43  +            secretKeyRef:
    44  +              key: username
    45  +              name: foo-user
    46  +        - name: BAZ
    47  +          value: http://baz.{{ .Project }}.svc:8080/
    48  +        image: docker-registry.default.svc:5000/{{ .Project }}/foo:latest
    49  +        imagePullPolicy: Always
    50  +        livenessProbe:
    51  +          failureThreshold: 3
    52  +          httpGet:
    53  +            path: /health
    54  +            port: 8080
    55  +            scheme: HTTP
    56  +          initialDelaySeconds: 6
    57  +          periodSeconds: 10
    58  +          successThreshold: 1
    59  +          timeoutSeconds: 3
    60  +        name: foo
    61  +        ports:
    62  +        - containerPort: 8080
    63  +          protocol: TCP
    64  +        readinessProbe:
    65  +          failureThreshold: 3
    66  +          httpGet:
    67  +            path: /health
    68  +            port: 8080
    69  +            scheme: HTTP
    70  +          initialDelaySeconds: 3
    71  +          periodSeconds: 10
    72  +          successThreshold: 1
    73  +          timeoutSeconds: 3
    74  +        resources:
    75  +          limits:
    76  +            cpu: 100m
    77  +            memory: 128Mi
    78  +          requests:
    79  +            cpu: 50m
    80  +            memory: 128Mi
    81  +        terminationMessagePath: /dev/termination-log
    82  +        terminationMessagePolicy: File
    83  +      dnsPolicy: ClusterFirst
    84  +      restartPolicy: Always
    85  +      schedulerName: default-scheduler
    86  +      securityContext: {}
    87  +      terminationGracePeriodSeconds: 30
    88  +  test: false
    89  +  triggers:
    90  +  - type: ConfigChange
    91   
    92  
    93  Summary: 0 in sync, 2 to create, 0 to update, 0 to delete
    94  
    95  Creating secret/foo-user ... done
    96  Creating dc/foo ... done