Jaime Ramírez
2020-06-04 bae32892252843645e0116a049c3bca495ea43f8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
apiVersion: apps.openshift.io/v1
kind: DeploymentConfig
metadata:
  labels:
    app: envoy-gateway
    app.kubernetes.io/component: envoy-gateway
    app.kubernetes.io/instance: envoy-gateway
  name: envoy-gateway
spec:
  replicas: 1
  revisionHistoryLimit: 10
  selector:
    deploymentconfig: envoy-gateway
  strategy:
    activeDeadlineSeconds: 21600
    resources: {}
    rollingParams:
      intervalSeconds: 1
      maxSurge: 25%
      maxUnavailable: 25%
      timeoutSeconds: 600
      updatePeriodSeconds: 1
    type: Rolling
  template:
    metadata:
      annotations:
        openshift.io/generated-by: OpenShiftNewApp
      labels:
        deploymentconfig: envoy-gateway
    spec:
      containers:
      - env:
        - name: ENVOY_YAML
          value: /opt/app-root/config/envoy.yaml
        name: envoy-gateway
        ports:
        - containerPort: 8080
          protocol: TCP
        resources: {}
        terminationMessagePath: /dev/termination-log
        terminationMessagePolicy: File
        volumeMounts:
        - mountPath: /opt/app-root/config
          name: configuration
      dnsPolicy: ClusterFirst
      restartPolicy: Always
      schedulerName: default-scheduler
      securityContext: {}
      terminationGracePeriodSeconds: 30
      volumes:
      - configMap:
          defaultMode: 420
          name: envoy-gateway
        name: configuration
  test: false
  triggers:
  - type: ConfigChange
  - imageChangeParams:
      automatic: true
      containerNames:
      - envoy-gateway
      from:
        kind: ImageStreamTag
        name: envoy-gateway:latest
        namespace: adopt-a-pup
    type: ImageChange