update operator, add backup script and kustomization file for updating
This commit is contained in:
parent
c55e6ffe82
commit
5e8f58edfa
5 changed files with 3306 additions and 0 deletions
|
@ -0,0 +1,4 @@
|
||||||
|
to update the operator change the values in the kustomization file and then run:
|
||||||
|
```
|
||||||
|
kubectl kustomize -o build/operator.yaml
|
||||||
|
```
|
8
backup.yaml
Normal file
8
backup.yaml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
apiVersion: awx.ansible.com/v1beta1
|
||||||
|
kind: AWXBackup
|
||||||
|
metadata:
|
||||||
|
name: awxbackup-2024-08
|
||||||
|
namespace: awx
|
||||||
|
spec:
|
||||||
|
deployment_name: awx-aaron
|
3280
build/operator.yaml
Normal file
3280
build/operator.yaml
Normal file
File diff suppressed because it is too large
Load diff
13
kustomization.yaml
Normal file
13
kustomization.yaml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
resources:
|
||||||
|
# Find the latest tag here: https://github.com/ansible/awx-operator/releases
|
||||||
|
- github.com/ansible/awx-operator/config/default?ref=2.19.1
|
||||||
|
|
||||||
|
# Set the image tags to match the git version from above
|
||||||
|
images:
|
||||||
|
- name: quay.io/ansible/awx-operator
|
||||||
|
newTag: 2.19.1
|
||||||
|
|
||||||
|
# Specify a custom namespace in which to install AWX
|
||||||
|
namespace: awx
|
|
@ -5,6 +5,7 @@ metadata:
|
||||||
name: awx-aaron
|
name: awx-aaron
|
||||||
namespace: awx
|
namespace: awx
|
||||||
spec:
|
spec:
|
||||||
|
postgres_data_volume_init: true
|
||||||
ingress_type: ingress
|
ingress_type: ingress
|
||||||
ingress_hosts:
|
ingress_hosts:
|
||||||
- hostname: awx-aaron.apps.yolokube.de
|
- hostname: awx-aaron.apps.yolokube.de
|
||||||
|
|
Loading…
Reference in a new issue