File tree Expand file tree Collapse file tree 6 files changed +23
-25
lines changed Expand file tree Collapse file tree 6 files changed +23
-25
lines changed Original file line number Diff line number Diff line change 1+ apiVersion : source.toolkit.fluxcd.io/v1beta2
2+ kind : HelmRepository
3+ metadata :
4+ name : console
5+ annotations :
6+ " helm.sh/hook " : post-install,post-upgrade
7+ spec :
8+ interval : 5m0s
9+ url : https://pluralsh.github.io/console
Original file line number Diff line number Diff line change 1+ apiVersion : source.toolkit.fluxcd.io/v1beta2
2+ kind : HelmRepository
3+ metadata :
4+ name : runtime
5+ annotations :
6+ " helm.sh/hook " : post-install,post-upgrade
7+ spec :
8+ interval : 5m0s
9+ url : https://pluralsh.github.io/bootstrap
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
22name : runtime
33description : Sets up the basic dependencies needed to get a network stack running
44type : application
5- version : 0.1.9
5+ version : 0.1.10
66appVersion : " 0.1.0"
77dependencies :
88- name : external-dns
Original file line number Diff line number Diff line change @@ -18,23 +18,3 @@ metadata:
1818spec :
1919 interval : 5m0s
2020 url : https://flagger.app
21- ---
22- apiVersion : source.toolkit.fluxcd.io/v1beta2
23- kind : HelmRepository
24- metadata :
25- name : console
26- annotations :
27- " helm.sh/hook " : post-install,post-upgrade
28- spec :
29- interval : 5m0s
30- url : https://pluralsh.github.io/console
31- ---
32- apiVersion : source.toolkit.fluxcd.io/v1beta2
33- kind : HelmRepository
34- metadata :
35- name : bootstrap
36- annotations :
37- " helm.sh/hook " : post-install,post-upgrade
38- spec :
39- interval : 5m0s
40- url : https://pluralsh.github.io/bootstrap
Original file line number Diff line number Diff line change @@ -26,12 +26,12 @@ resource "plural_git_repository" "infra" {
2626resource "plural_service_deployment" "helm-repositories" {
2727 name = " helm-repositories"
2828 namespace = kubernetes_namespace. infra . metadata . name
29- repository {
29+ repository = {
3030 id = plural_git_repository.infra.id
3131 ref = " main"
3232 folder = " apps/repositories"
3333 }
34- cluster {
34+ cluster = {
3535 id = data.plural_cluster.mgmt.id
3636 }
3737 protect = true
@@ -40,12 +40,12 @@ resource "plural_service_deployment" "helm-repositories" {
4040resource "plural_service_deployment" "apps" {
4141 name = " apps"
4242 namespace = kubernetes_namespace. infra . metadata . name
43- repository {
43+ repository = {
4444 id = plural_git_repository.infra.id
4545 ref = " main"
4646 folder = " apps/services"
4747 }
48- cluster {
48+ cluster = {
4949 id = data.plural_cluster.mgmt.id
5050 }
5151 protect = true
You can’t perform that action at this time.
0 commit comments