Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "Reapply "bump k8s"" #318

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
KIND_VERSION = 0.23.0
KUBERNETES_VERSION = 1.30.0
KIND_NODE_HASH = 047357ac0cfea04663786a612ba1eaba9702bef25227a794b52890dd8bcd692e
HELM_VERSION = 3.15.1
KIND_VERSION = 0.20.0
KUBERNETES_VERSION = 1.28.0
KIND_NODE_HASH = b7a4cad12c197af3ba43202d3efe03246b3f0793f162afb40a33c923952d5b31
HELM_VERSION = 3.13.2
KUBEVAL_VERSION = 0.16.1

.PHONY: apply
Expand Down
16 changes: 8 additions & 8 deletions akka/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
KUBERNETES_VERSION = $${KUBERNETES_VERSION:-"1.30.0"}
KUBERNETES_VERSION = $${KUBERNETES_VERSION:-"1.28.0"}
RELEASE = $$(basename $$PWD)

.PHONY: install
Expand All @@ -15,50 +15,50 @@ lint-default:
@echo "=> Linting default values.yaml"
helm lint --strict
@echo "=> Validating default value.yaml"
helm template . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/chatwork/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
helm template . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/cw-ozaki/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
@echo ""

.PHONY: lint-local-akka-http
lint-local-akka-http:
@echo "=> Linting examples/local-akka-http.yaml"
helm lint --strict -f examples/local-akka-http.yaml
@echo "=> Validating examples/local-akka-http.yaml"
helm template -f examples/local-akka-http.yaml . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/chatwork/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
helm template -f examples/local-akka-http.yaml . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/cw-ozaki/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error

.PHONY: lint-cluster-discovery-dns
lint-cluster-discovery-dns:
@echo "=> Linting examples/cluster-discovery-dns.yaml"
helm lint --strict -f examples/cluster-discovery-dns.yaml
@echo "=> Validating examples/cluster-discovery-dns.yaml"
helm template -f examples/cluster-discovery-dns.yaml . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/chatwork/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
helm template -f examples/cluster-discovery-dns.yaml . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/cw-ozaki/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error

.PHONY: lint-cluster-discovery-kubernetes-api
lint-cluster-discovery-kubernetes-api:
@echo "=> Linting examples/cluster-discovery-kubernetes-api.yaml"
helm lint --strict -f examples/cluster-discovery-kubernetes-api.yaml
@echo "=> Validating examples/cluster-discovery-kubernetes-api.yaml"
helm template -f examples/cluster-discovery-kubernetes-api.yaml . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/chatwork/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
helm template -f examples/cluster-discovery-kubernetes-api.yaml . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/cw-ozaki/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error

.PHONY: lint-cluster-discovery-aggregate
lint-cluster-discovery-aggregate:
@echo "=> Linting examples/cluster-discovery-aggregate.yaml"
helm lint --strict -f examples/cluster-discovery-aggregate.yaml
@echo "=> Validating examples/cluster-discovery-aggregate.yaml"
helm template -f examples/cluster-discovery-aggregate.yaml . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/chatwork/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
helm template -f examples/cluster-discovery-aggregate.yaml . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/cw-ozaki/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error

.PHONY: lint-cluster-multi-eks-cluster
lint-cluster-multi-eks-cluster:
@echo "=> Linting examples/cluster-multi-eks-cluster.yaml"
helm lint --strict -f examples/cluster-multi-eks-cluster.yaml
@echo "=> Validating examples/cluster-multi-eks-cluster.yaml"
helm template -f examples/cluster-multi-eks-cluster.yaml . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/chatwork/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
helm template -f examples/cluster-multi-eks-cluster.yaml . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/cw-ozaki/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error

.PHONY: lint-use-environment-variable-and-secret
lint-use-environment-variable-and-secret:
@echo "=> Linting examples/use-environment-variable-and-secret.yaml"
helm lint --strict -f examples/use-environment-variable-and-secret.yaml
@echo "=> Validating examples/use-environment-variable-and-secret.yaml"
helm template -f examples/use-environment-variable-and-secret.yaml . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/chatwork/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
helm template -f examples/use-environment-variable-and-secret.yaml . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/cw-ozaki/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error

.PHONY: test
test: test-local-akka-http test-cluster-discovery-dns test-cluster-discovery-kubernetes-api test-use-environment-variable-and-secret test-default
Expand Down
4 changes: 2 additions & 2 deletions argoproj-crd/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
KUBERNETES_VERSION = $${KUBERNETES_VERSION:-"1.30.0"}
KUBERNETES_VERSION = $${KUBERNETES_VERSION:-"1.28.0"}
RELEASE = $$(basename $$PWD)

.PHONY: install
Expand All @@ -19,7 +19,7 @@ lint-default:
helm lint --strict
@echo ""
@echo "=> Validating default value.yaml"
helm template . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/chatwork/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
helm template . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/cw-ozaki/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
@echo ""

.PHONY: test
Expand Down
4 changes: 2 additions & 2 deletions aws-ebs-csi-driver/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
KUBERNETES_VERSION = $${KUBERNETES_VERSION:-"1.30.0"}
KUBERNETES_VERSION = $${KUBERNETES_VERSION:-"1.28.0"}
RELEASE = $$(basename $$PWD)

.PHONY: install
Expand All @@ -16,7 +16,7 @@ lint-default:
@echo "=> Linting default values.yaml"
helm lint --strict
@echo "=> Validating default value.yaml"
helm template . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/chatwork/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
helm template . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/cw-ozaki/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
@echo ""

.PHONY: test
Expand Down
4 changes: 2 additions & 2 deletions aws-secret-operator/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
KUBERNETES_VERSION = $${KUBERNETES_VERSION:-"1.30.0"}
KUBERNETES_VERSION = $${KUBERNETES_VERSION:-"1.28.0"}
RELEASE = $$(basename $$PWD)

.PHONY: install
Expand All @@ -15,7 +15,7 @@ lint-default:
@echo "=> Linting default values.yaml"
helm lint --strict
@echo "=> Validating default value.yaml"
helm template . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/chatwork/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
helm template . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/cw-ozaki/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
@echo ""

.PHONY: test
Expand Down
4 changes: 2 additions & 2 deletions burrow/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
KUBERNETES_VERSION = $${KUBERNETES_VERSION:-"1.30.0"}
KUBERNETES_VERSION = $${KUBERNETES_VERSION:-"1.28.0"}
RELEASE = $$(basename $$PWD)

.PHONY: install
Expand All @@ -16,7 +16,7 @@ lint-default:
@echo "=> Linting default values.yaml"
helm lint --strict
@echo "=> Validating default value.yaml"
helm template . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/chatwork/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
helm template . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/cw-ozaki/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
@echo ""

.PHONY: test
Expand Down
4 changes: 2 additions & 2 deletions docker-registry/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

KUBERNETES_VERSION = $${KUBERNETES_VERSION:-"1.30.0"}
KUBERNETES_VERSION = $${KUBERNETES_VERSION:-"1.28.0"}
RELEASE = "$$(basename $$PWD)"

.PHONY: install
Expand All @@ -16,7 +16,7 @@ lint-default:
@echo "=> Linting default values.yaml"
helm lint --strict
@echo "=> Validating default value.yaml"
helm template . | kubeval --additional-schema-locations https://raw.githubusercontent.com/chatwork/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
helm template . | kubeval --additional-schema-locations https://raw.githubusercontent.com/cw-ozaki/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
@echo ""

.PHONY: test
Expand Down
4 changes: 2 additions & 2 deletions dynamodb/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
KUBERNETES_VERSION = $${KUBERNETES_VERSION:-"1.30.0"}
KUBERNETES_VERSION = $${KUBERNETES_VERSION:-"1.28.0"}
RELEASE = $$(basename $$PWD)

.PHONY: install
Expand All @@ -15,7 +15,7 @@ lint-default:
@echo "=> Linting default values.yaml"
helm lint --strict
@echo "=> Validating default value.yaml"
helm template . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/chatwork/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
helm template . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/cw-ozaki/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
@echo ""

.PHONY: test
Expand Down
4 changes: 2 additions & 2 deletions elasticmq/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
KUBERNETES_VERSION = $${KUBERNETES_VERSION:-"1.30.0"}
KUBERNETES_VERSION = $${KUBERNETES_VERSION:-"1.28.0"}
RELEASE = $$(basename $$PWD)

.PHONY: install
Expand All @@ -15,7 +15,7 @@ lint-default:
@echo "=> Linting default values.yaml"
helm lint --strict
@echo "=> Validating default value.yaml"
helm template . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/chatwork/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
helm template . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/cw-ozaki/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
@echo ""

.PHONY: test
Expand Down
2 changes: 1 addition & 1 deletion elasticsearch/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ lint-default:
@echo "=> Linting default values.yaml"
helm lint --strict
@echo "=> Validating default value.yaml"
helm template . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/chatwork/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
helm template . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/cw-ozaki/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
@echo ""

.PHONY: test
Expand Down
6 changes: 3 additions & 3 deletions envoy/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
KUBERNETES_VERSION = $${KUBERNETES_VERSION:-"1.30.0"}
KUBERNETES_VERSION = $${KUBERNETES_VERSION:-"1.28.0"}
RELEASE = $$(basename $$PWD)

.PHONY: install
Expand All @@ -15,7 +15,7 @@ lint-default:
@echo "=> Linting default values.yaml"
helm lint --strict
@echo "=> Validating default value.yaml"
helm template . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/chatwork/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
helm template . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/cw-ozaki/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
@echo ""

.PHONY: lint-xds
Expand All @@ -25,7 +25,7 @@ lint-xds:
@echo "=> Linting default values.yaml"
helm lint -f example/xds.yaml --strict
@echo "=> Validating default value.yaml"
helm template -f example/xds.yaml . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/chatwork/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
helm template -f example/xds.yaml . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/cw-ozaki/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
@echo ""

.PHONY: test
Expand Down
4 changes: 2 additions & 2 deletions example/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
KUBERNETES_VERSION = $${KUBERNETES_VERSION:-"1.30.0"}
KUBERNETES_VERSION = $${KUBERNETES_VERSION:-"1.28.0"}
RELEASE = $$(basename $$PWD)

.PHONY: install
Expand All @@ -15,7 +15,7 @@ lint-default:
@echo "=> Linting default values.yaml"
helm lint --strict
@echo "=> Validating default value.yaml"
helm template . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/chatwork/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
helm template . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/cw-ozaki/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
@echo ""

.PHONY: test
Expand Down
2 changes: 1 addition & 1 deletion fluent-bit/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ lint-default:
@echo "=> Linting default values.yaml"
helm lint --strict
@echo "=> Validating default value.yaml"
helm template . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/chatwork/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
helm template . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/cw-ozaki/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
@echo ""

.PHONY: test
Expand Down
10 changes: 5 additions & 5 deletions fluentd/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
KUBERNETES_VERSION = $${KUBERNETES_VERSION:-"1.30.0"}
KUBERNETES_VERSION = $${KUBERNETES_VERSION:-"1.28.0"}
RELEASE = $$(basename $$PWD)

.PHONY: install
Expand All @@ -15,29 +15,29 @@ lint-default:
@echo "=> Linting default values.yaml"
helm lint --strict
@echo "=> Validating default value.yaml"
helm template . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/chatwork/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
helm template . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/cw-ozaki/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
@echo ""

.PHONY: lint-daemonset
lint-daemonset:
@echo "=> Linting examples/daemonset.yaml"
helm lint --strict -f examples/daemonset.yaml
@echo "=> Validating examples/daemonset.yaml"
helm template -f examples/daemonset.yaml . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/chatwork/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
helm template -f examples/daemonset.yaml . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/cw-ozaki/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error

.PHONY: lint-statefulset
lint-statefulset:
@echo "=> Linting examples/statefulset.yaml"
helm lint --strict -f examples/statefulset.yaml
@echo "=> Validating examples/statefulset.yaml"
helm template -f examples/statefulset.yaml . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/chatwork/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
helm template -f examples/statefulset.yaml . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/cw-ozaki/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error

.PHONY: lint-use-udp
lint-use-udp:
@echo "=> Linting examples/use-udp.yaml"
helm lint --strict -f examples/use-udp.yaml
@echo "=> Validating examples/use-udp.yaml"
helm template -f examples/use-udp.yaml . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/chatwork/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
helm template -f examples/use-udp.yaml . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/cw-ozaki/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error

.PHONY: test
test: test-daemonset test-statefulset test-use-udp test-default
Expand Down
4 changes: 2 additions & 2 deletions gcp-credentials/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
KUBERNETES_VERSION = $${KUBERNETES_VERSION:-"1.30.0"}
KUBERNETES_VERSION = $${KUBERNETES_VERSION:-"1.28.0"}
RELEASE = $$(basename $$PWD)

.PHONY: install
Expand All @@ -15,7 +15,7 @@ lint-default:
@echo "=> Linting default values.yaml"
helm lint --strict
@echo "=> Validating default value.yaml"
helm template . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/chatwork/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
helm template . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/cw-ozaki/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
@echo ""

.PHONY: test
Expand Down
4 changes: 2 additions & 2 deletions kube-schedule-scaler/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
KUBERNETES_VERSION = $${KUBERNETES_VERSION:-"1.30.0"}
KUBERNETES_VERSION = $${KUBERNETES_VERSION:-"1.28.0"}
RELEASE = $$(basename $$PWD)

.PHONY: install
Expand All @@ -15,7 +15,7 @@ lint-default:
@echo "=> Linting default values.yaml"
helm lint --strict
@echo "=> Validating default value.yaml"
helm template . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/chatwork/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
helm template . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/cw-ozaki/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
@echo ""

.PHONY: test
Expand Down
4 changes: 2 additions & 2 deletions mailcatcher/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
KUBERNETES_VERSION = $${KUBERNETES_VERSION:-"1.30.0"}
KUBERNETES_VERSION = $${KUBERNETES_VERSION:-"1.28.0"}
RELEASE = $$(basename $$PWD)

.PHONY: install
Expand All @@ -15,7 +15,7 @@ lint-default:
@echo "=> Linting default values.yaml"
helm lint --strict
@echo "=> Validating default value.yaml"
helm template . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/chatwork/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
helm template . | kubeval --strict --ignore-missing-schemas --additional-schema-locations https://raw.githubusercontent.com/cw-ozaki/kubernetes-json-schema/master/ --kubernetes-version $(KUBERNETES_VERSION) --exit-on-error
@echo ""

.PHONY: test
Expand Down
Loading
Loading