-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcloudbuild-e2e.yaml
93 lines (85 loc) · 2.22 KB
/
cloudbuild-e2e.yaml
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
# Copyright 2024 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
steps:
# create a GKE cluster
- name: 'gcr.io/cloud-builders/gcloud'
id: CreateCluster
args:
- 'container'
- 'clusters'
- 'create'
- '${TRIGGER_NAME}-${SHORT_SHA}'
- '--zone=${LOCATION}'
- '--num-nodes=1'
# deploy the manifests in GKE
- name: 'gcr.io/cloud-builders/kubectl'
id: Deploy
args:
- 'apply'
- '-k'
- './k8s/overlays/test'
env:
- 'CLOUDSDK_COMPUTE_REGION=${LOCATION}'
- 'CLOUDSDK_CONTAINER_CLUSTER=${TRIGGER_NAME}-${SHORT_SHA}'
# assert that all pods are up and running
- name: 'gcr.io/cloud-builders/kubectl'
id: AssertReady
args:
- 'wait'
- '--for=condition=Ready'
- '--timeout=300s'
- '-n'
- 'opentelemetry'
- 'pods'
- '--all'
env:
- 'CLOUDSDK_COMPUTE_REGION=${LOCATION}'
- 'CLOUDSDK_CONTAINER_CLUSTER=${TRIGGER_NAME}-${SHORT_SHA}'
- name: 'ubuntu'
id: Wait for telemetry to be collected
script: |
#!/usr/bin/env bash
sleep 5
# Copy the telemetry out
- name: 'gcr.io/cloud-builders/kubectl'
id: Copy
args:
- 'cp'
- '-c'
- 'filecp'
- 'opentelemetry/opentelemetry-collector-0:/output/output.json'
- 'test/fixtures/tmp.json'
env:
- 'CLOUDSDK_COMPUTE_REGION=${LOCATION}'
- 'CLOUDSDK_CONTAINER_CLUSTER=${TRIGGER_NAME}-${SHORT_SHA}'
- name: 'ubuntu'
id: Prettify the output for easier diff
script: |
#!/usr/bin/env bash
apt-get update && apt-get install -y build-essential curl
make prettify-fixture
- name: bats/bats
id: Check output
args:
- 'test/verify.bats'
# delete the GKE cluster
- name: 'gcr.io/cloud-builders/gcloud'
id: DeleteCluster
args:
- 'container'
- 'clusters'
- 'delete'
- '${TRIGGER_NAME}-${SHORT_SHA}'
- '--zone=${LOCATION}'
- '--quiet'