Skip to content

Commit

Permalink
Remove two TODOs
Browse files Browse the repository at this point in the history
  • Loading branch information
lukehoban committed Sep 26, 2018
1 parent 043820b commit b5a0387
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion kubernetes-ts-guestbook/components/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ let redisMaster = new k8sjs.ServiceDeployment("redis-master", {
});

let redisReplica = new k8sjs.ServiceDeployment("redis-replica", {
// TODO: Change this to `*-redisreplica` when upstream re-publishes under that name.
image: "gcr.io/google_samples/gb-redisslave:v1",
ports: [6379]
});
Expand Down
1 change: 0 additions & 1 deletion kubernetes-ts-guestbook/simple/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ let redisReplicaDeployment = new k8s.apps.v1.Deployment("redis-replica", {
containers: [
{
name: "replica",
// TODO: Change this to `*-redisreplica` when upstream re-publishes under that name.
image: "gcr.io/google_samples/gb-redisslave:v1",
resources: { requests: { cpu: "100m", memory: "100Mi" } },
// If your cluster config does not include a dns service, then to instead access an environment
Expand Down

0 comments on commit b5a0387

Please sign in to comment.