Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kornys committed Oct 27, 2023
1 parent 664fc16 commit 2747c3c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
verify_ssl: no
template: "{{ item }}"
loop:
- templates/acm/02-central.yaml.j2
- templates/acs/02-central.yaml.j2
register: acs_central

- name: Sleep for 30 seconds and continue with play
Expand All @@ -21,6 +21,7 @@
kubeconfig: "{{ kubeconfig_path }}/{{ infra_context_name }}"
namespace: "{{ acs_namespace }}"
kind: Central
api_version: platform.stackrox.io/v1alpha1
name: stackrox-central-services
wait: true
verify_ssl: no
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
environment:
KUBECONFIG: "{{ kubeconfig_path }}/{{ infra_context_name }}"
RAND_STR: "{{ lookup('community.general.random_string', base64=True, length=4) }}"
when: token.resources | length = 0
when: token.resources | length == 0

- name: Generate init bundle
shell: |
Expand All @@ -36,7 +36,7 @@
KUBECONFIG: "{{ kubeconfig_path }}/{{ infra_context_name }}"
RAND_STR: "{{ lookup('community.general.random_string', base64=True, length=4) }}"
ROX_CENTRAL_ADDRESS: "{{ acs_central_url }}"
when: init_bundle.resources | length = 0
when: init_bundle.resources | length == 0

- name: Get deployment files for stackrox
shell: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ metadata:
namespace: {{ acs_namespace }}
spec:
channel: rhacs-{{ acs_version }}
installPlanApproval: Manual
installPlanApproval: Automatic
name: rhacs-operator
source: redhat-operators
sourceNamespace: openshift-marketplace

0 comments on commit 2747c3c

Please sign in to comment.