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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
apiVersion: template.openshift.io/v1
kind: Template
labels:
  template: envoy-gateway-template
metadata:
  openshift.io/display-name: envoy-gateway
  openshift.io/provider-display-name: Red Hat, Inc.
  name: envoy-gateway
objects:
  - apiVersion: v1
    kind: ConfigMap
    metadata:
      labels:
        app: envoy-gateway
      name: envoy-gateway
    data:
      envoy.yaml: |-
        admin:
          access_log_path: /tmp/admin_access.log
          address:
            socket_address: { address: 0.0.0.0, port_value: 9901 }
        static_resources:
          listeners:
            - name: listener_external
              address:
                socket_address: { address: 0.0.0.0, port_value: 8080 }
              filter_chains:
                - filters:
                    - name: envoy.http_connection_manager
                      config:
                        stat_prefix: gateway_external
                        codec_type: AUTO
                        route_config:
                          name: external_route
                          virtual_hosts:
                            - name: external_gateway_route
                              domains: ["*"]
                              routes:
                                - match: { prefix: "/animals/" }
                                  route: { cluster: animal-service, timeout: { seconds: 60 } }
                                - match: { prefix: "/adoption/" }
                                  route: { cluster: adoption-service, timeout: { seconds: 60 } }
                                - match: { prefix: "/shelters/" }
                                  route: { cluster: shelter-service, timeout: { seconds: 60 } }
                                - match: { prefix: "/email/" }
                                  route: { cluster: email-service, timeout: { seconds: 60 } }
                              cors:
                                allow_origin_string_match:
                                - prefix: "*"
                                allow_methods: GET, PUT, DELETE, POST, OPTIONS
                                allow_headers: access-control-allow-origin,access-control-request-header,access-control-request-method,authorization,keep-alive,user-agent,cache-control,content-type,content-transfer-encoding,custom-header-1,x-accept-content-transfer-encoding,x-accept-response-streaming,x-user-agent
                                max_age: "1728000"
                                expose_headers: x-total-pages,x-total-count
                                filter_enabled:
                                  default_value: {numerator: 100, denominator: HUNDRED}
                                  runtime_key: cors.www.enabled
                        http_filters:
                          - name: envoy.cors
                          - name: envoy.router
          clusters:
            - name: animal-service
              connect_timeout: 1.25s
              type: strict_dns
              lb_policy: round_robin
              hosts:
                - socket_address:
                    address: animal-service
                    port_value: 8080
            - name: adoption-service
              connect_timeout: 1.25s
              type: strict_dns
              lb_policy: round_robin
              hosts:
                - socket_address:
                    address: adoption-service
                    port_value: 8080
            - name: shelter-service
              connect_timeout: 1.25s
              type: strict_dns
              lb_policy: round_robin
              hosts:
                - socket_address:
                    address: shelter-service
                    port_value: 8080
            - name: email-service
              connect_timeout: 1.25s
              type: strict_dns
              lb_policy: round_robin
              hosts:
                - socket_address:
                    address: email-service
                    port_value: 8080
  - apiVersion: v1
    kind: Service
    metadata:
      labels:
        app: envoy-gateway
      name: envoy-gateway
    spec:
      ports:
        - name: 8080-8080
          port: 8080
          protocol: TCP
          targetPort: 8080
        - name: 9901-9901
          port: 9901
          protocol: TCP
          targetPort: 9901
      selector:
        app: envoy-gateway
      sessionAffinity: None
      type: ClusterIP
  - apiVersion: build.openshift.io/v1
    kind: BuildConfig
    metadata:
      labels:
        build: envoy-gateway
      name: envoy-gateway
    spec:
      failedBuildsHistoryLimit: 5
      nodeSelector: null
      output:
        to:
          kind: ImageStreamTag
          name: envoy-gateway:latest
      postCommit: {}
      resources: {}
      runPolicy: Serial
      source:
        dockerfile: |-
          FROM quay.io/redhattraining/envoy-gateway
          USER 1001
          CMD /usr/local/bin/envoy -c '/opt/app-root/config/envoy.yaml'
        type: Dockerfile
      strategy:
        dockerStrategy:
          env:
            - name: LOGLEVEL
              value: info
        type: Docker
      successfulBuildsHistoryLimit: 5
      triggers:
        - github:
            secret: HGzaU2uqomOXrJDLoCu9
          type: GitHub
        - generic:
            secret: aVttj5olUwUJPlpEPxgX
          type: Generic
        - type: ConfigChange
        - type: ImageChange
  - apiVersion: image.openshift.io/v1
    kind: ImageStream
    metadata:
      name: envoy-gateway
    =spec:
      lookupPolicy:
        local: false
  - apiVersion: route.openshift.io/v1
    kind: Route
    metadata:
      labels:
        app: envoy-gateway
      name: envoy-gateway
    spec:
      port:
        targetPort: 8080-8080
      to:
        kind: Service
        name: envoy-gateway
        weight: 100
      wildcardPolicy: None
  - 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:
            app: envoy-gateway
            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
          type: ImageChange