-
Notifications
You must be signed in to change notification settings - Fork 3
65 lines (63 loc) · 2.96 KB
/
Release-container-data-ingestion.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
name: Release dataingestion image
on:
workflow_dispatch:
inputs:
microservice_name:
description: "Microservice name matching your repository (ex. data-ingestion-service)."
required: true
type: string
default: <microservicename>
dockerfile_relative_path:
description: "Relative path of your dockerfile, may include -f flag (ex. ./apps/<microservice>/Dockerfile)."
required: true
type: string
default: -f ./data-ingestion-service/Dockerfile .
existing-image-tag:
description: "Image tag of existing container in ECR (not used if build-new-container=true)."
required: false
type: string
environment_classifier:
description: Metadata to append to application version (A setting of NONE, indicates all metadata to be stripped). Ex. if version=1.0.0, and environment_classifier=SNAPSHOT result will be 1.0.0-SNAPSHOT.<githubsha>. If version=1.0.0, and environment_classifier=NONE result will be 1.0.0.
required: true
type: string
default: SNAPSHOT
values_file_with_path:
description: What is the path to the helm chart in NBS helm chart repository? (ex. charts/dataingestion-service/values-int1.yaml)
type: string
default: "charts/<microservice>/<values_filename.yaml>"
build-new-container:
description: "Check the box to create a new container tagged based on the environment_classifier."
required: true
default: false
type: boolean
update_helm_chart:
description: "Do you want to update the specified helm chart"
required: true
default: true
type: boolean
jobs:
call-build-microservice-container-workflow:
uses: CDCgov/NEDSS-Workflows/.github/workflows/Release-gradle-microservice-container.yaml@main
with:
microservice_name: ${{inputs.microservice_name}}
existing-image-tag: ${{inputs.existing-image-tag}}
build-new-container: ${{inputs.build-new-container}}
dockerfile_relative_path: ${{inputs.dockerfile_relative_path}}
environment_classifier: ${{inputs.environment_classifier}}
secrets:
CDC_NBS_SANDBOX_SHARED_SERVICES_ACCOUNTID: ${{secrets.CDC_NBS_SANDBOX_SHARED_SERVICES_ACCOUNTID}}
ECR_REPO_BASE_NAME: ${{secrets.ECR_REPO_BASE_NAME}}
GIT_USER_EMAIL: ${{secrets.GIT_USER_EMAIL}}
GIT_USER_NAME: ${{secrets.GIT_USER_NAME}}
HELM_TOKEN: ${{secrets.HELM_TOKEN}}
call-update-helm:
needs: call-build-microservice-container-workflow
uses: CDCgov/NEDSS-Workflows/.github/workflows/Update-helm-charts.yaml@main
with:
microservice_name: ${{inputs.microservice_name}}
values_file_with_path: ${{inputs.values_file_with_path}}
new_image_tag: ${{ needs.call-build-microservice-container-workflow.outputs.output_image_tag }}
secrets:
GIT_USER_EMAIL: ${{secrets.GIT_USER_EMAIL}}
GIT_USER_NAME: ${{secrets.GIT_USER_NAME}}
HELM_TOKEN: ${{secrets.HELM_TOKEN}}