From 5e848cdc73d00795c1d7dc94e56250541edca967 Mon Sep 17 00:00:00 2001 From: Michael Thomson Date: Wed, 7 Feb 2024 17:42:38 -0500 Subject: [PATCH] work --- nextcloud/dns-endpoint.yaml | 12 ++++++++++++ nextcloud/helmrelease-nextcloud.yaml | 4 ++-- 2 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 nextcloud/dns-endpoint.yaml diff --git a/nextcloud/dns-endpoint.yaml b/nextcloud/dns-endpoint.yaml new file mode 100644 index 0000000..75825f2 --- /dev/null +++ b/nextcloud/dns-endpoint.yaml @@ -0,0 +1,12 @@ +apiVersion: externaldns.k8s.io/v1alpha1 +kind: DNSEndpoint +metadata: + name: nextcloud.michaelthomson.dev + namespace: nextcloud +spec: + endpoints: + - dnsName: nextcloud.michaelthomson.dev + recordTTL: 180 + recordType: CNAME + targets: + - server.michaelthomson.dev diff --git a/nextcloud/helmrelease-nextcloud.yaml b/nextcloud/helmrelease-nextcloud.yaml index 70d04cb..8cd28d9 100644 --- a/nextcloud/helmrelease-nextcloud.yaml +++ b/nextcloud/helmrelease-nextcloud.yaml @@ -429,14 +429,14 @@ spec: ## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#container-probes ## livenessProbe: - enabled: true + enabled: false initialDelaySeconds: 60 periodSeconds: 10 timeoutSeconds: 5 failureThreshold: 10 successThreshold: 1 readinessProbe: - enabled: true + enabled: false initialDelaySeconds: 60 periodSeconds: 10 timeoutSeconds: 5