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

pull from ghcr instead of dockerhub #602

Merged
merged 2 commits into from
Mar 16, 2022
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
2 changes: 1 addition & 1 deletion bindings/deploy/node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ spec:
spec:
containers:
- name: node
image: docker.io/dapriosamples/bindings-nodeapp:latest
image: ghcr.io/dapr/samples/bindings-nodeapp:latest
ports:
- containerPort: 3000
imagePullPolicy: Always
2 changes: 1 addition & 1 deletion bindings/deploy/python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ spec:
spec:
containers:
- name: python
image: docker.io/dapriosamples/bindings-pythonapp:latest
image: ghcr.io/dapr/samples/bindings-pythonapp:latest
2 changes: 1 addition & 1 deletion distributed-calculator/deploy/dotnet-subtractor.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
spec:
containers:
- name: subtract
image: dapriosamples/distributed-calculator-csharp:latest
image: ghcr.io/dapr/samples/distributed-calculator-csharp:latest
ports:
- containerPort: 80
imagePullPolicy: Always
2 changes: 1 addition & 1 deletion distributed-calculator/deploy/go-adder.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
spec:
containers:
- name: add
image: dapriosamples/distributed-calculator-go:latest
image: ghcr.io/dapr/samples/distributed-calculator-go:latest
ports:
- containerPort: 6000
imagePullPolicy: Always
2 changes: 1 addition & 1 deletion distributed-calculator/deploy/node-divider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
spec:
containers:
- name: divide
image: dapriosamples/distributed-calculator-node:latest
image: ghcr.io/dapr/samples/distributed-calculator-node:latest
ports:
- containerPort: 4000
imagePullPolicy: Always
2 changes: 1 addition & 1 deletion distributed-calculator/deploy/python-multiplier.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
spec:
containers:
- name: multiply
image: dapriosamples/distributed-calculator-python:latest
image: ghcr.io/dapr/samples/distributed-calculator-python:latest
ports:
- containerPort: 5001
imagePullPolicy: Always
2 changes: 1 addition & 1 deletion distributed-calculator/deploy/react-calculator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ spec:
spec:
containers:
- name: calculator-front-end
image: dapriosamples/distributed-calculator-react-calculator:latest
image: ghcr.io/dapr/samples/distributed-calculator-react-calculator:latest
ports:
- containerPort: 8080
imagePullPolicy: Always
2 changes: 1 addition & 1 deletion hello-kubernetes/deploy/node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ spec:
spec:
containers:
- name: node
image: dapriosamples/hello-k8s-node:latest
image: ghcr.io/dapr/samples/hello-k8s-node:latest
ports:
- containerPort: 3000
imagePullPolicy: Always
2 changes: 1 addition & 1 deletion hello-kubernetes/deploy/python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ spec:
spec:
containers:
- name: python
image: dapriosamples/hello-k8s-python:latest
image: ghcr.io/dapr/samples/hello-k8s-python:latest
2 changes: 1 addition & 1 deletion observability/deploy/python-multiplier.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
spec:
containers:
- name: multiply
image: dapriosamples/distributed-calculator-slow-python:latest
image: ghcr.io/dapr/samples/distributed-calculator-slow-python:latest
ports:
- containerPort: 5001
imagePullPolicy: Always
2 changes: 1 addition & 1 deletion pub-sub/deploy/node-subscriber.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ spec:
spec:
containers:
- name: node-subscriber
image: dapriosamples/pubsub-node-subscriber:latest
image: ghcr.io/dapr/samples/pubsub-node-subscriber:latest
ports:
- containerPort: 3000
imagePullPolicy: Always
2 changes: 1 addition & 1 deletion pub-sub/deploy/python-subscriber.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ spec:
spec:
containers:
- name: python-subscriber
image: dapriosamples/pubsub-python-subscriber:latest
image: ghcr.io/dapr/samples/pubsub-python-subscriber:latest
ports:
- containerPort: 5001
imagePullPolicy: Always
2 changes: 1 addition & 1 deletion pub-sub/deploy/react-form.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ spec:
spec:
containers:
- name: react-form
image: dapriosamples/pubsub-react-form:latest
image: ghcr.io/dapr/samples/pubsub-react-form:latest
ports:
- containerPort: 8080
imagePullPolicy: Always
2 changes: 1 addition & 1 deletion secretstore/deploy/node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ spec:
spec:
containers:
- name: node
image: dapriosamples/secretstorenode:latest
image: ghcr.io/dapr/samples/secretstorenode:latest
env:
- name: SECRET_STORE
value: "kubernetes"
Expand Down