Skip to content

Commit

Permalink
fix the chaoshub fault url
Browse files Browse the repository at this point in the history
Signed-off-by: Shubham Chaudhary <[email protected]>
  • Loading branch information
ispeakc0de committed Sep 29, 2023
1 parent 19f3788 commit 9adcf80
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ IS_DOCKER_INSTALLED = $(shell which docker >> /dev/null 2>&1; echo $$?)

# docker info
DOCKER_REGISTRY ?= docker.io
DOCKER_REPO ?= litmuschaos
DOCKER_REPO ?= shubh214
DOCKER_IMAGE ?= chaos-exporter
DOCKER_TAG ?= ci
DOCKER_TAG ?= fault

.PHONY: help
help:
Expand Down Expand Up @@ -77,7 +77,11 @@ push:
@echo "------------------------------"
@echo "--> Pushing image"
@echo "------------------------------"
<<<<<<< Updated upstream
@docker buildx build --file Dockerfile --progress plain --no-cache --push --platform linux/arm64,linux/amd64 --tag $(DOCKER_REPO)/$(DOCKER_IMAGE):$(DOCKER_TAG) .
=======
@docker buildx build --file Dockerfile --progress plane --no-cache --push --platform linux/amd64 --tag $(DOCKER_REPO)/$(DOCKER_IMAGE):$(DOCKER_TAG) .
>>>>>>> Stashed changes

.PHONY: build-amd64
build-amd64:
Expand Down
2 changes: 1 addition & 1 deletion tests/bdd/bdd_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ var _ = BeforeSuite(func() {
log.Info("RBAC created")

By("Installing Generic Experiments")
err = exec.Command("kubectl", "apply", "-f", "https://hub.litmuschaos.io/api/chaos/master?file=charts/generic/experiments.yaml", "-n", "litmus").Run()
err = exec.Command("kubectl", "apply", "-f", "https://hub.litmuschaos.io/api/chaos/master?file=faults/kubernetes/experiments.yaml", "-n", "litmus").Run()
Expect(err).To(BeNil(), "unable to install experiments")
log.Info("generic experiments created")

Expand Down

0 comments on commit 9adcf80

Please sign in to comment.