From 9bebe367e7489fb3eede279a15677e933b19c0de Mon Sep 17 00:00:00 2001 From: perf3ct Date: Mon, 20 Nov 2023 13:50:03 -0800 Subject: [PATCH 1/5] Create artifacthub-repo.yml file --- artifacthub-repo.yml | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 artifacthub-repo.yml diff --git a/artifacthub-repo.yml b/artifacthub-repo.yml new file mode 100644 index 0000000..e69de29 -- 2.45.1 From 69bd339f5fbf4a376e6b69d4be82badfca0223a4 Mon Sep 17 00:00:00 2001 From: konrad Date: Tue, 21 Nov 2023 12:33:20 +0000 Subject: [PATCH 2/5] artifacthub-repo.yml aktualisiert --- artifacthub-repo.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/artifacthub-repo.yml b/artifacthub-repo.yml index e69de29..f4fdae9 100644 --- a/artifacthub-repo.yml +++ b/artifacthub-repo.yml @@ -0,0 +1 @@ +repositoryID: 14bd8402-9829-4f9b-b71e-e496fc1307f5 \ No newline at end of file -- 2.45.1 From 35379c20e74876f773741cc1593bac3333d59541 Mon Sep 17 00:00:00 2001 From: perf3ct Date: Tue, 12 Dec 2023 14:34:00 -0800 Subject: [PATCH 3/5] add sane defaults for Ingress --- values.yaml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/values.yaml b/values.yaml index 4a084b1..04e640e 100644 --- a/values.yaml +++ b/values.yaml @@ -28,7 +28,7 @@ api: mountPath: /app/vikunja/files # storageClass: storage-class ingress: - main: + api: enabled: true annotations: # proxy-body-size is set to 0 to remove the body limit on file uploads @@ -36,7 +36,8 @@ api: hosts: - host: vikunja.local paths: - - path: "/api/v1" + - path: /api/v1 + pathType: Prefix tls: [] configMaps: # The configuration for Vikunja's api. @@ -95,7 +96,10 @@ frontend: # This is just an example. You should change this to your own domain. - host: vikunja.local paths: - - path: "/" + - path: / + pathType: Prefix + service: + port: 80 tls: [] # If you've used the "built-in" ingress in the api section, you don't need to specify VIKUNJA_API_URL as an environment variable here. # If you've used something else, you'll need to provide the URL to the API here. -- 2.45.1 From f1a10ce395404de2d18ddf75cde8b0f59a6de3c9 Mon Sep 17 00:00:00 2001 From: perf3ct Date: Tue, 12 Dec 2023 14:34:51 -0800 Subject: [PATCH 4/5] fix frontend port --- values.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/values.yaml b/values.yaml index 04e640e..59f53d3 100644 --- a/values.yaml +++ b/values.yaml @@ -98,8 +98,6 @@ frontend: paths: - path: / pathType: Prefix - service: - port: 80 tls: [] # If you've used the "built-in" ingress in the api section, you don't need to specify VIKUNJA_API_URL as an environment variable here. # If you've used something else, you'll need to provide the URL to the API here. -- 2.45.1 From aaceb9f2f76d8c793db6c92fa5d65d8cbf329b63 Mon Sep 17 00:00:00 2001 From: perf3ct Date: Tue, 12 Dec 2023 14:43:10 -0800 Subject: [PATCH 5/5] change this ingress name to be `main` as well --- values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/values.yaml b/values.yaml index 59f53d3..104e4f3 100644 --- a/values.yaml +++ b/values.yaml @@ -28,7 +28,7 @@ api: mountPath: /app/vikunja/files # storageClass: storage-class ingress: - api: + main: enabled: true annotations: # proxy-body-size is set to 0 to remove the body limit on file uploads -- 2.45.1