Skip to content

Commit 085966e

Browse files
MarcinGinsztAllda
authored andcommitted
yamllint
1 parent 2ee9a40 commit 085966e

File tree

2 files changed

+41
-41
lines changed

2 files changed

+41
-41
lines changed

ansible/inventory/group_vars/operator-pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ github_ssh_credentials_path: ../../vaults/common/github-bot-ssh
3535
e2e_kubeconfig_path: ../../vaults/common/kubeconfig-e2e
3636

3737
pyxis_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

ansible/roles/operator-pipeline/tasks/main.yml

Lines changed: 40 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -410,46 +410,46 @@
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

0 commit comments

Comments
 (0)