Skip to content

Commit

Permalink
helm: fix paths after folder move
Browse files Browse the repository at this point in the history
  • Loading branch information
yorugac committed Oct 30, 2023
1 parent 390e3d5 commit 7ce63b1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:

- name: Testing
run: |
helm install k6-operator ./charts/ -f ./charts/values.yaml --set manager.image.tag=${{github.sha}}
helm install k6-operator ./charts/k6-operator/ -f ./charts/k6-operator/values.yaml --set manager.image.tag=${{github.sha}}
kubectl cluster-info dump | grep 'nodeInfo' -A 11
kubectl -n k6-operator-system describe deployment k6-operator-controller-manager
kubectl create configmap crocodile-stress-test --from-file e2e/test.js
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -168,10 +168,10 @@ e2e-helm: deploy-helm

# Deploy controller in the configured Kubernetes cluster in ~/.kube/config
deploy-helm: manifests helm
$(HELM) upgrade --install --wait k6-operator ./charts -f ./charts/values.yaml --set manager.image.name=$(IMG_NAME) --set manager.image.tag=$(IMG_TAG)
$(HELM) upgrade --install --wait k6-operator ./charts/k6-operator -f ./charts/k6-operator/values.yaml --set manager.image.name=$(IMG_NAME) --set manager.image.tag=$(IMG_TAG)

helm-template: manifests helm
$(HELM) template k6-operator ./charts -f ./charts/values.yaml --set manager.image.name=$(IMG_NAME) --set manager.image.tag=$(IMG_TAG)
$(HELM) template k6-operator ./charts/k6-operator -f ./charts/k6-operator/values.yaml --set manager.image.name=$(IMG_NAME) --set manager.image.tag=$(IMG_TAG)

# Delete operator from a cluster
delete-helm: manifests helm
Expand Down

0 comments on commit 7ce63b1

Please sign in to comment.