Skip to content

Commit

Permalink
Use infracloudio/botkube repo for docker images
Browse files Browse the repository at this point in the history
Signed-off-by: Prasad Ghangal <prasad.ghangal@gmail.com>
  • Loading branch information
PrasadG193 committed Sep 30, 2019
1 parent f3aaa9d commit 2f43ab9
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ after_success:
- |
if [[ "$TRAVIS_BRANCH" == "develop" ]] && [[ "$TRAVIS_PULL_REQUEST" == "false" ]]; then
docker login -u "$DOCKER_USERNAME" -p "$DOCKER_PASSWORD"
docker push infracloud/botkube:latest
docker push infracloudio/botkube:latest
fi
- |
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ machine.

Now you can build and run BotKube by one of the following ways
### Build the container image
1. This will build BotKube and create a new container image tagged as `infracloud/botkube:latest`
1. This will build BotKube and create a new container image tagged as `infracloudio/botkube:latest`
```sh
$ make build
$ make container-image
$ docker tag infracloud/botkube:latest <your_account>/botkube:latest
$ docker tag infracloudio/botkube:latest <your_account>/botkube:latest
$ docker push <your_account>/botkube:latest
```
Where `<your_account>` is Docker hub account to which you can push the image
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
IMAGE_REPO=infracloud/botkube
IMAGE_REPO=infracloudio/botkube
TAG=$(shell cut -d'=' -f2- .release)

.DEFAULT_GOAL := build
Expand Down
2 changes: 1 addition & 1 deletion deploy-all-in-one-tls.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ spec:
serviceAccountName: botkube-sa
containers:
- name: botkube
image: "infracloud/botkube:v0.8.0"
image: "infracloudio/botkube:v0.8.0"
imagePullPolicy: Always
volumeMounts:
- name: config-volume
Expand Down
4 changes: 2 additions & 2 deletions deploy-all-in-one.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ spec:
serviceAccountName: botkube-sa
containers:
- name: botkube
image: "infracloud/botkube:v0.8.0"
image: "infracloudio/botkube:v0.8.0"
imagePullPolicy: Always
volumeMounts:
- name: config-volume
Expand All @@ -313,4 +313,4 @@ spec:
# run as non privilaged user
securityContext:
runAsUser: 101
runAsGroup: 101
runAsGroup: 101
2 changes: 1 addition & 1 deletion helm/botkube/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
replicaCount: 1

image:
repository: infracloud/botkube
repository: infracloudio/botkube
pullPolicy: Always
## default tag is appVersion from Chart.yaml. If you want to use
## some other tag then it can be specified here
Expand Down

0 comments on commit 2f43ab9

Please sign in to comment.