pin nextcloud to 26.0.7

This commit is contained in:
2023-11-18 11:50:24 -05:00
parent bbeb0e5c3f
commit bd9247d792
3 changed files with 9 additions and 8 deletions

View File

@@ -78,8 +78,9 @@ apps:
state: present state: present
nextcloud: nextcloud:
enabled: false enabled: true
namespace: nextcloud namespace: nextcloud
state: present
hello_world: hello_world:
enabled: true enabled: true

View File

@@ -1,9 +1,9 @@
--- ---
#image: image:
# repository: dkregistry.xai-corp.net repository: nextcloud
# tag: "21.0" tag: "26.0.7"
# flavor: apache flavor: apache
# pullSecrets: regcred # pullSecrets: regcred
ingress: ingress:

View File

@@ -8,14 +8,14 @@
name: "{{apps.nextcloud.namespace}}" name: "{{apps.nextcloud.namespace}}"
api_version: v1 api_version: v1
kind: Namespace kind: Namespace
state: "{{present}}" state: "{{apps.nextcloud.state}}"
become: true become: true
- name: create persistent volume resources - name: create persistent volume resources
kubernetes.core.k8s: kubernetes.core.k8s:
kubeconfig: "/etc/rancher/k3s/k3s.yaml" kubeconfig: "/etc/rancher/k3s/k3s.yaml"
state: "present" state: "{{apps.nextcloud.state}}"
definition: "{{ lookup('template', item) | from_yaml }}" definition: "{{ lookup('template', item) | from_yaml }}"
loop: loop:
# - nextcloud/pv-apps.yaml # - nextcloud/pv-apps.yaml
@@ -44,7 +44,7 @@
- name: Install Nextcloud Release - name: Install Nextcloud Release
local_action: local_action:
module: kubernetes.core.helm module: kubernetes.core.helm
release_state: "present" release_state: "{{apps.nextcloud.state}}"
name: nextcloud name: nextcloud
namespace: "{{apps.nextcloud.namespace}}" namespace: "{{apps.nextcloud.namespace}}"
create_namespace: yes create_namespace: yes