File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change 44 "context"
55 _ "embed"
66 "path"
7+ "strings"
78
89 "github.com/kid/home-infra/.dagger/internal/dagger"
910)
@@ -26,6 +27,11 @@ func (m *Kube) buildChecks(ctx context.Context) (checks []Check, err error) {
2627 dirs , err := Containing (ctx , m .HomeInfra .Source , "kustomization.yaml" )
2728
2829 for _ , dir := range dirs {
30+ if strings .HasSuffix (dir , "bootstrap/flux" ) {
31+ // FIXME: this fails to fetch the remote resources
32+ continue
33+ }
34+
2935 checks = append (checks , Check {
3036 Name : path .Join (dir , "kubeconform" ),
3137 Check : func (ctx context.Context ) error {
@@ -42,6 +48,7 @@ func (m *Kube) Base() *dagger.Container {
4248 kubeConform := dag .Container ().From ("ghcr.io/yannh/kubeconform:v0.6.7-alpine" )
4349 return m .HomeInfra .
4450 Base (
51+ // TODO: make renovate work here
4552 "gettext=0.22.5" , // contains envsubst
4653 "bash=5.2.37" ,
4754 "kustomize=5.4.3" ,
You can’t perform that action at this time.
0 commit comments