Skip to content
This repository was archived by the owner on Oct 21, 2022. It is now read-only.

Commit 781c2a5

Browse files
authored
bump compatibility server version in deployment file (#332)
* bump compatibility server version in deployment file * update image name * update README
1 parent 0de6ad1 commit 781c2a5

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

compatibility_server/README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,14 @@ Commands for deployment
5151
2. Build, test, push, and deploy a new image
5252

5353
TAG_NAME is in the format `v[NUMBER_OF_REVISION]`. Incrementing the number by 1 will be the new tag name.
54-
IMAGE_NAME is the gcr.io/python-compatibility-tools/compatibility-server:[TAG_NAME].
54+
IMAGE_NAME is the gcr.io/python-compatibility-tools/compatibility-image:[TAG_NAME].
5555

5656
::
5757

58-
docker build -t gcr.io/python-compatibility-tools/compatibility-server:[TAG_NAME] .
58+
docker build -t gcr.io/python-compatibility-tools/compatibility-image:[TAG_NAME] .
5959
sudo docker run -v /var/run/docker.sock:/var/run/docker.sock -p 8888:8888 [IMAGE_NAME]
60-
gcloud docker -- push gcr.io/python-compatibility-tools/compatibility-server:[TAG_NAME]
61-
kubectl set image deployment/compatibility-server compatibility-server=gcr.io/python-compatibility-tools/compatibility-server:[TAG_NAME]
60+
gcloud docker -- push gcr.io/python-compatibility-tools/compatibility-image:[TAG_NAME]
61+
kubectl set image deployment/compatibility-server compatibility-server=gcr.io/python-compatibility-tools/compatibility-image:[TAG_NAME]
6262

6363
Alternatively, we can use the deploy.yaml to push a new deployment.
6464

compatibility_server/deployment/deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ spec:
2929
run: compatibility-server
3030
spec:
3131
containers:
32-
- image: gcr.io/python-compatibility-tools/compatibility-server:v24
32+
- image: gcr.io/python-compatibility-tools/compatibility-image:v29
3333
imagePullPolicy: IfNotPresent
3434
name: compatibility-server
3535
ports:

0 commit comments

Comments
 (0)