diff options
author | Vincent Ambo <tazjin@google.com> | 2019-12-20T20·39+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-12-20T20·39+0000 |
commit | 61c8ac433878ea34f5bfb4232143ad43f4af2df2 (patch) | |
tree | b15e8a65aa0d2f1e3be1a77f73912d8f648ddbc7 | |
parent | 8de5d093d8e35b2492c81015dcfcb052d2718614 (diff) |
fix(infra/k8s): Fix Nixery image URLs for moved local projects r/239
-rw-r--r-- | ops/infra/kubernetes/cgit/config.yaml | 4 | ||||
-rw-r--r-- | ops/infra/kubernetes/tazblog/config.yaml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/ops/infra/kubernetes/cgit/config.yaml b/ops/infra/kubernetes/cgit/config.yaml index 78de82ee09ee..43bfe9d7fb45 100644 --- a/ops/infra/kubernetes/cgit/config.yaml +++ b/ops/infra/kubernetes/cgit/config.yaml @@ -31,7 +31,7 @@ spec: fsGroup: 1000 containers: - name: cgit - image: nixery.local/shell/services.cgit-taz:{{ gitHEAD }} + image: nixery.local/shell/web.cgit-taz:{{ gitHEAD }} command: [ "cgit-launch" ] env: - name: HOME @@ -40,7 +40,7 @@ spec: - name: git-volume mountPath: /git - name: sync-gcsr - image: nixery.local/shell/services.sync-gcsr:{{ gitHEAD }} + image: nixery.local/shell/ops.sync-gcsr:{{ gitHEAD }} command: [ "sync-gcsr" ] env: - name: SYNC_USER diff --git a/ops/infra/kubernetes/tazblog/config.yaml b/ops/infra/kubernetes/tazblog/config.yaml index 165a30f6839b..dc63ce8e4b38 100644 --- a/ops/infra/kubernetes/tazblog/config.yaml +++ b/ops/infra/kubernetes/tazblog/config.yaml @@ -17,7 +17,7 @@ spec: spec: containers: - name: tazblog - image: nixery.local/shell/services.tazblog:{{ gitHEAD }} + image: nixery.local/shell/web.tazblog:{{ gitHEAD }} command: [ "tazblog" ] --- apiVersion: v1 |