From 332464161b8c03438a285f73d5b3d295e154960e Mon Sep 17 00:00:00 2001 From: Chris Alfano Date: Sat, 13 Jan 2024 16:40:44 -0500 Subject: [PATCH 1/2] feat(balancer): add helm chart --- .../k8s-manifests/balancer/helm-chart.toml | 3 +++ .holo/lenses/balancer.toml | 20 +++++++++++++++++++ .holo/sources/balancer.toml | 3 +++ balancer/release-values.yaml | 14 +++++++++++++ 4 files changed, 40 insertions(+) create mode 100644 .holo/branches/k8s-manifests/balancer/helm-chart.toml create mode 100644 .holo/lenses/balancer.toml create mode 100644 .holo/sources/balancer.toml create mode 100644 balancer/release-values.yaml diff --git a/.holo/branches/k8s-manifests/balancer/helm-chart.toml b/.holo/branches/k8s-manifests/balancer/helm-chart.toml new file mode 100644 index 0000000..7fb3fd2 --- /dev/null +++ b/.holo/branches/k8s-manifests/balancer/helm-chart.toml @@ -0,0 +1,3 @@ +[holomapping] +holosource = "balancer=>helm-chart" +files = "**" diff --git a/.holo/lenses/balancer.toml b/.holo/lenses/balancer.toml new file mode 100644 index 0000000..cfbcc58 --- /dev/null +++ b/.holo/lenses/balancer.toml @@ -0,0 +1,20 @@ +[hololens] +package = "holo/lens-helm3/1.22" + +[hololens.input] +root = "balancer" +files = "**" + +[hololens.output] +merge = "replace" + +[hololens.helm] +namespace = "balancer" +release_name = "balancer" +namespace_fill = true +namespace_override = true + +chart_path = "helm-chart" +value_files = [ + "release-values.yaml" +] diff --git a/.holo/sources/balancer.toml b/.holo/sources/balancer.toml new file mode 100644 index 0000000..bc8533d --- /dev/null +++ b/.holo/sources/balancer.toml @@ -0,0 +1,3 @@ +[holosource] +url = "https://github.com/CodeForPhilly/balancer-main.git" +ref = "refs/heads/develop" diff --git a/balancer/release-values.yaml b/balancer/release-values.yaml new file mode 100644 index 0000000..be79c09 --- /dev/null +++ b/balancer/release-values.yaml @@ -0,0 +1,14 @@ +ingress: + enabled: true + annotations: + kubernetes.io/ingress.class: nginx + cert-manager.io/cluster-issuer: letsencrypt-prod + hosts: + - host: balancer.sandbox.k8s.phl.io + paths: + - path: / + pathType: ImplementationSpecific + tls: + - secretName: balancer-tls + hosts: + - balancer.sandbox.k8s.phl.io From c6efb121d6d51f4505d9e17d4731c1f2e1c64ea2 Mon Sep 17 00:00:00 2001 From: Chris Alfano Date: Tue, 16 Jan 2024 13:30:13 -0500 Subject: [PATCH 2/2] chore(deps): bump civic-cloud to v1.7.2 --- .holo/sources/civic-cloud.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.holo/sources/civic-cloud.toml b/.holo/sources/civic-cloud.toml index 01a3e7b..b0b1263 100644 --- a/.holo/sources/civic-cloud.toml +++ b/.holo/sources/civic-cloud.toml @@ -1,3 +1,3 @@ [holosource] -url = "https://github.com/CodeForPhilly/civic-cloud" -ref = "refs/tags/v1.6.0" +url = "https://github.com/civic-cloud/cluster-template" +ref = "refs/tags/v1.7.2"