Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
  • Loading branch information
saramune committed Jul 26, 2024
1 parent 6cff4af commit fe0baaf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
KIND_VERSION = 0.20.0
KUBERNETES_VERSION = 1.28.0
KIND_NODE_HASH = b7a4cad12c197af3ba43202d3efe03246b3f0793f162afb40a33c923952d5b31
HELM_VERSION = 3.13.2
KIND_VERSION = 0.23.0
KUBERNETES_VERSION = 1.30.0
KIND_NODE_HASH = 047357ac0cfea04663786a612ba1eaba9702bef25227a794b52890dd8bcd692e
HELM_VERSION = 3.15.1
KUBEVAL_VERSION = 0.16.1

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

.PHONY: install
install:
helm upgrade -i --set replicaCount=3 $(RELEASE) .
sleep 180s
kubectl get po -n akka
helm upgrade -i --set replicaCount=3 --wait $(RELEASE) .
for pod in $$(kubectl get po -n akka | grep akka | cut -d ' ' -f 1); do kubectl logs $$pod -n akka; sleep 3; done

.PHONY: lint
Expand Down

0 comments on commit fe0baaf

Please sign in to comment.