Skip to content

Commit c357bf3

Browse files
jkohenfabxc
authored andcommitted
Changed all references to use public image repo. (#58)
1 parent 2704918 commit c357bf3

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ pkgs = $(shell $(GO) list ./... | grep -v /vendor/)
2121
PREFIX ?= $(shell pwd)
2222
BIN_DIR ?= $(shell pwd)
2323
# Private repo.
24-
DOCKER_IMAGE_NAME ?= gcr.io/prometheus-to-sd/stackdriver-prometheus-sidecar
24+
DOCKER_IMAGE_NAME ?= gcr.io/stackdriver-prometheus/stackdriver-prometheus-sidecar
2525
DOCKER_IMAGE_TAG ?= $(subst /,-,$(shell git rev-parse --abbrev-ref HEAD))
2626

2727
ifdef DEBUG

kube/patch-operated.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ kubectl -n "${KUBE_NAMESPACE}" patch prometheus "$1" --type merge --patch "
1212
spec:
1313
containers:
1414
- name: sidecar
15-
image: gcr.io/prometheus-to-sd/stackdriver-prometheus-sidecar:${SIDECAR_IMAGE_TAG}
15+
image: gcr.io/stackdriver-prometheus/stackdriver-prometheus-sidecar:${SIDECAR_IMAGE_TAG}
1616
imagePullPolicy: Always
1717
args:
1818
- \"--stackdriver.project-id=${GCP_PROJECT}\"

kube/patch.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ spec:
1818
spec:
1919
containers:
2020
- name: sidecar
21-
image: gcr.io/prometheus-to-sd/stackdriver-prometheus-sidecar:${SIDECAR_IMAGE_TAG}
21+
image: gcr.io/stackdriver-prometheus/stackdriver-prometheus-sidecar:${SIDECAR_IMAGE_TAG}
2222
imagePullPolicy: Always
2323
args:
2424
- \"--stackdriver.project-id=${GCP_PROJECT}\"

release.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,4 @@ git checkout -b "release-${version}"
2525

2626
# 3. Run `DOCKER_IMAGE_NAME={public_docker_image} make push`.
2727
# TODO(jkohen): This is the public repo. It should replace the line below when we go public.
28-
#DOCKER_IMAGE_NAME="gcr.io/stackdriver-prometheus/stackdriver-prometheus-sidecar" make push
29-
DOCKER_IMAGE_NAME="gcr.io/prometheus-to-sd/stackdriver-prometheus-sidecar" make push
28+
DOCKER_IMAGE_NAME="gcr.io/stackdriver-prometheus/stackdriver-prometheus-sidecar" make push

0 commit comments

Comments
 (0)