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

switch third party images to GCR #1622

Merged
merged 1 commit into from
Jul 16, 2019
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 developer_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ Check [this](https://github.com/kubeflow/pipelines/blob/master/test/README.md) p

You can inspect mysql database directly by running:
```bash
kubectl run -it --rm --image=mysql:5.6 --restart=Never mysql-client -- mysql -h mysql
kubectl run -it --rm --image=gcr.io/ml-pipeline/mysql:5.6 --restart=Never mysql-client -- mysql -h mysql
mysql> use mlpipeline;
mysql> select * from jobs;
```
Expand Down
2 changes: 1 addition & 1 deletion manifests/base/argo/workflow-controller-configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
data:
config: |
{
executorImage: argoproj/argoexec:v2.3.0,
executorImage: gcr.io/ml-pipeline/argoexec:v2.3.0,
artifactRepository:
{
s3: {
Expand Down
4 changes: 2 additions & 2 deletions manifests/base/argo/workflow-controller-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ spec:
- --configmap
- workflow-controller-configmap
- --executor-image
- argoproj/argoexec:v2.3.0
- gcr.io/ml-pipeline/argoexec:v2.3.0
command:
- workflow-controller
env:
Expand All @@ -36,7 +36,7 @@ spec:
fieldRef:
apiVersion: v1
fieldPath: metadata.namespace
image: argoproj/workflow-controller:v2.3.0
image: gcr.io/ml-pipeline/workflow-controller:v2.3.0
imagePullPolicy: IfNotPresent
name: workflow-controller
resources: {}
Expand Down
2 changes: 1 addition & 1 deletion manifests/base/minio/minio-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ spec:
value: minio
- name: MINIO_SECRET_KEY
value: minio123
image: minio/minio:RELEASE.2018-02-09T22-40-05Z
image: gcr.io/ml-pipeline/minio:RELEASE.2018-02-09T22-40-05Z
name: minio
ports:
- containerPort: 9000
Expand Down
2 changes: 1 addition & 1 deletion manifests/base/mysql/mysql-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
- env:
- name: MYSQL_ALLOW_EMPTY_PASSWORD
value: "true"
image: mysql:5.6
image: gcr.io/ml-pipeline/mysql:5.6
name: mysql
ports:
- containerPort: 3306
Expand Down
10 changes: 5 additions & 5 deletions manifests/namespaced-install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ data:
config: |
{
namespace: kubeflow,
executorImage: argoproj/argoexec:v2.3.0,
executorImage: gcr.io/ml-pipeline/argoexec:v2.3.0,
artifactRepository:
{
s3: {
Expand Down Expand Up @@ -627,7 +627,7 @@ spec:
value: minio
- name: MINIO_SECRET_KEY
value: minio123
image: minio/minio:RELEASE.2018-02-09T22-40-05Z
image: gcr.io/ml-pipeline/minio:RELEASE.2018-02-09T22-40-05Z
name: minio
ports:
- containerPort: 9000
Expand Down Expand Up @@ -794,7 +794,7 @@ spec:
- env:
- name: MYSQL_ALLOW_EMPTY_PASSWORD
value: "true"
image: mysql:5.6
image: gcr.io/ml-pipeline/mysql:5.6
name: mysql
ports:
- containerPort: 3306
Expand Down Expand Up @@ -859,7 +859,7 @@ spec:
- --configmap
- workflow-controller-configmap
- --executor-image
- argoproj/argoexec:v2.3.0
- gcr.io/ml-pipeline/argoexec:v2.3.0
command:
- workflow-controller
env:
Expand All @@ -868,7 +868,7 @@ spec:
fieldRef:
apiVersion: v1
fieldPath: metadata.namespace
image: argoproj/workflow-controller:v2.3.0
image: gcr.io/ml-pipeline/workflow-controller:v2.3.0
imagePullPolicy: IfNotPresent
name: workflow-controller
resources: {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ data:
config: |
{
namespace: $(NAMESPACE),
executorImage: argoproj/argoexec:v2.3.0,
executorImage: gcr.io/ml-pipeline/argoexec:v2.3.0,
artifactRepository:
{
s3: {
Expand Down