File tree Expand file tree Collapse file tree 2 files changed +41
-41
lines changed
roles/operator-pipeline/tasks Expand file tree Collapse file tree 2 files changed +41
-41
lines changed Original file line number Diff line number Diff line change @@ -35,4 +35,4 @@ github_ssh_credentials_path: ../../vaults/common/github-bot-ssh
3535e2e_kubeconfig_path : ../../vaults/common/kubeconfig-e2e
3636
3737pyxis_api_key_path : ../../vaults/{{ env }}/pyxis_api_key
38- e2e_gh_account_path : ../../vaults/{{ env }}/e2e-gh-account-pat
38+ e2e_gh_account_path : ../../vaults/{{ env }}/e2e-gh-account-pat
Original file line number Diff line number Diff line change 410410 data :
411411 kubeconfig : " {{ lookup('file', e2e_kubeconfig_path, rstrip=False) | b64encode }}"
412412
413- - name : Create Pyxis-API-Key secret (only stage, for sake of E2E CI pipeline)
414- no_log : yes
415- tags :
416- - secrets
417- k8s :
418- state : present
419- force : yes
420- namespace : " {{ oc_namespace }}"
421- definition :
422- apiVersion : v1
423- kind : Secret
424- type : opaque
425- metadata :
426- name : pyxis_api_key
427- labels :
428- app : operator-pipeline
429- suffix : " {{ suffix }}"
430- env : " {{ env }}"
431- data :
432- pyxis_api_key : " {{ lookup('file', pyxis_api_key_path, rstrip=False) | b64encode }}"
413+ - name : Create Pyxis-API-Key secret (only stage, for sake of E2E CI pipeline)
414+ no_log : yes
415+ tags :
416+ - secrets
417+ k8s :
418+ state : present
419+ force : yes
420+ namespace : " {{ oc_namespace }}"
421+ definition :
422+ apiVersion : v1
423+ kind : Secret
424+ type : opaque
425+ metadata :
426+ name : pyxis_api_key
427+ labels :
428+ app : operator-pipeline
429+ suffix : " {{ suffix }}"
430+ env : " {{ env }}"
431+ data :
432+ pyxis_api_key : " {{ lookup('file', pyxis_api_key_path, rstrip=False) | b64encode }}"
433433
434- - name : Create Github-API-key secret (only stage, for sake of E2E CI pipeline)
435- no_log : yes
436- tags :
437- - secrets
438- k8s :
439- state : present
440- force : yes
441- namespace : " {{ oc_namespace }}"
442- definition :
443- apiVersion : v1
444- kind : Secret
445- type : opaque
446- metadata :
447- name : github_token_pr_open
448- labels :
449- app : operator-pipeline
450- suffix : " {{ suffix }}"
451- env : " {{ env }}"
452- data :
453- GITHUB_TOKEN : " {{ lookup('file', e2e_gh_account_path, rstrip=False) | b64encode }}"
434+ - name : Create Github-API-key secret (only stage, for sake of E2E CI pipeline)
435+ no_log : yes
436+ tags :
437+ - secrets
438+ k8s :
439+ state : present
440+ force : yes
441+ namespace : " {{ oc_namespace }}"
442+ definition :
443+ apiVersion : v1
444+ kind : Secret
445+ type : opaque
446+ metadata :
447+ name : github_token_pr_open
448+ labels :
449+ app : operator-pipeline
450+ suffix : " {{ suffix }}"
451+ env : " {{ env }}"
452+ data :
453+ GITHUB_TOKEN : " {{ lookup('file', e2e_gh_account_path, rstrip=False) | b64encode }}"
454454 tags :
455455 - ci
You can’t perform that action at this time.
0 commit comments