Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update kubernetes and argo manifests. #482

Merged
merged 1 commit into from
Jan 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions cd/k8s/job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ spec:
env:
- name: GITHUB_ACCESS_TOKEN
value: ""
- name: NPM_TOKEN
value: ""
- name: DOCS_API_KEY
value: ""
- name: JENKINS_JOB_TOKEN
Expand Down
7 changes: 7 additions & 0 deletions cd/k8s/task-definition.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ spec:
parameters:
- name: github_access_token
value: ""
- name: npm_token
value: ""
- name: docs_api_key
value: ""
- name: jenkins_job_token
Expand Down Expand Up @@ -39,6 +41,8 @@ spec:
parameters:
- name: github_access_token
value: "{{workflow.parameters.github_access_token}}"
- name: npm_token
value: "{{workflow.parameters.npm_token}}"
- name: docs_api_key
value: "{{workflow.parameters.docs_api_key}}"
- name: jenkins_job_token
Expand All @@ -53,6 +57,7 @@ spec:
inputs:
parameters:
- name: github_access_token
- name: npm_token
- name: docs_api_key
- name: jenkins_job_token
- name: jenkins_api_token
Expand Down Expand Up @@ -96,6 +101,8 @@ spec:
env:
- name: GITHUB_ACCESS_TOKEN
value: "{{inputs.parameters.github_access_token}}"
- name: NPM_TOKEN
value: "{{inputs.parameters.npm_token}}"
- name: DOCS_API_KEY
value: "{{inputs.parameters.docs_api_key}}"
- name: JENKINS_JOB_TOKEN
Expand Down