We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6951979 + 093caed commit 9e8db00Copy full SHA for 9e8db00
ansible/inventory/group_vars/all/pxc
@@ -0,0 +1 @@
1
+zuul_operator_pxc_bundle_url: "https://raw.githubusercontent.com/percona/percona-xtradb-cluster-operator/refs/tags/v1.17.0/deploy/bundle.yaml"
ansible/run.yml
@@ -4,6 +4,21 @@
4
hosts: localhost
5
6
tasks:
7
+ - name: Ensure PXC namespace
8
+ kubernetes.core.k8s:
9
+ name: pxc
10
+ api_version: v1
11
+ kind: Namespace
12
+ state: present
13
+
14
+ - name: Ensure PXC bundle
15
16
+ namespace: "zuul"
17
+ src: "{{ zuul_operator_pxc_bundle_url }}"
18
19
+ when: zuul_operator_pxc_bundle_url | length > 0
20
+ tags: pxc
21
22
- name: Ensure Zuul namespace
23
kubernetes.core.k8s:
24
name: zuul
0 commit comments