Skip to content

Commit

Permalink
chore: use our own rsync image
Browse files Browse the repository at this point in the history
This is mostly a security issue. We want to control the code we use,
instead of using a mutable tag maintained by a stranger. The code
is unchanged though, so this should have no effect for users.

Closes #666 👹
  • Loading branch information
edvald committed Sep 3, 2019
1 parent dd1ed8a commit 31ecce6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion garden-service/src/plugins/kubernetes/hot-reload.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export function configureHotReload({

const rsyncContainer = {
name: "garden-rsync",
image: "eugenmayer/rsync",
image: "gardendev/rsync:0.1",
imagePullPolicy: "IfNotPresent",
env: [
// This makes sure the server is accessible on any IP address, because CIDRs can be different across clusters.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ spec:
claimName: garden-build-sync
containers:
- name: sync
image: "eugenmayer/rsync:latest"
image: "gardendev/rsync:0.1"
imagePullPolicy: {{ .Values.image.pullPolicy }}
ports:
- name: rsync
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ describe("configureHotReload", () => {
},
{
name: "garden-rsync",
image: "eugenmayer/rsync",
image: "gardendev/rsync:0.1",
imagePullPolicy: "IfNotPresent",
env: [
{
Expand Down

0 comments on commit 31ecce6

Please sign in to comment.