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

Update guides to point to Github Container Registry #201

Merged
merged 1 commit into from
Jan 10, 2024
Merged
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
5 changes: 1 addition & 4 deletions guides/aws/aws.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,7 @@ kubectl config current-context
## Step 2. Installing MultiJuicer via helm

```sh
# You'll need to add the multi-juicer helm repo to your helm repos
helm repo add multi-juicer https://juice-shop.github.io/multi-juicer/

helm install multi-juicer multi-juicer/multi-juicer
helm install multi-juicer oci://ghcr.io/juice-shop/multi-juicer/helm/multi-juicer

# kubernetes will now spin up the pods
# to verify every thing is starting up, run:
Expand Down
5 changes: 1 addition & 4 deletions guides/azure/azure.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,7 @@ kubectl config current-context
## Step 2. Installing MultiJuicer via helm

```bash
# You'll need to add the multi-juicer helm repo to your helm repos
helm repo add multi-juicer https://juice-shop.github.io/multi-juicer/

helm install multi-juicer multi-juicer/multi-juicer
helm install multi-juicer oci://ghcr.io/juice-shop/multi-juicer/helm/multi-juicer

# kubernetes will now spin up the pods
# to verify every thing is starting up, run:
Expand Down
5 changes: 1 addition & 4 deletions guides/digital-ocean/digital-ocean.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,7 @@ kubectl config current-context
## Step 2. Installing MultiJuicer via helm

```bash
# You'll need to add the multi-juicer helm repo to your helm repos
helm repo add multi-juicer https://juice-shop.github.io/multi-juicer/

helm install multi-juicer multi-juicer/multi-juicer
helm install multi-juicer oci://ghcr.io/juice-shop/multi-juicer/helm/multi-juicer

# kubernetes will now spin up the pods
# to verify every thing is starting up, run:
Expand Down
5 changes: 1 addition & 4 deletions guides/k8s/k8s.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,7 @@ kubectl cluster-info
## Step 2. Installing MultiJuicer via helm

```bash
# You'll need to add the multi-juicer helm repo to your helm repos
helm repo add multi-juicer https://juice-shop.github.io/multi-juicer/

helm install multi-juicer multi-juicer/multi-juicer
helm install multi-juicer oci://ghcr.io/juice-shop/multi-juicer/helm/multi-juicer

# kubernetes will now spin up the pods
# to verify every thing is starting up, run:
Expand Down
5 changes: 1 addition & 4 deletions guides/monitoring-setup/monitoring.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,5 @@ echo "Installing loki/promtail"
helm --namespace monitoring upgrade --install promtail grafana/promtail --version 3.0.4 --set "config.lokiAddress=http://loki:3100/loki/api/v1/push" --set="serviceMonitor.enabled=true"

echo "Installing MultiJuicer"
helm repo add multi-juicer https://juice-shop.github.io/multi-juicer/

# for helm >= 3
helm install multi-juicer multi-juicer/multi-juicer --set="balancer.metrics.enabled=true" --set="balancer.metrics.dashboards.enabled=true" --set="balancer.metrics.serviceMonitor.enabled=true"
helm install multi-juicer oci://ghcr.io/juice-shop/multi-juicer/helm/multi-juicer --set="balancer.metrics.enabled=true" --set="balancer.metrics.dashboards.enabled=true" --set="balancer.metrics.serviceMonitor.enabled=true"
```
5 changes: 1 addition & 4 deletions guides/openshift/openshift.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,7 @@ oc new-project multi-juicer
## Step 2. Installing MultiJuicer via helm

```bash
# You'll need to add the multi-juicer helm repo to your helm repos
helm repo add multi-juicer https://juice-shop.github.io/multi-juicer/

helm install multi-juicer multi-juicer/multi-juicer ./multi-juicer/helm/multi-juicer/
helm install multi-juicer oci://ghcr.io/juice-shop/multi-juicer/helm/multi-juicer
```

## Step 3. Verify the app is running correctly
Expand Down