Skip to content

Instantly share code, notes, and snippets.

@Poogles
Created March 31, 2015 15:40
Show Gist options
  • Save Poogles/ec36cdc70953a3437f84 to your computer and use it in GitHub Desktop.
Save Poogles/ec36cdc70953a3437f84 to your computer and use it in GitHub Desktop.
E0331 15:39:45.012583 2521 kubelet.go:663] Couldn't make a ref to pod qp, container mock9002: 'selfLink was empty, can't make reference'
E0331 15:39:45.225079 2521 kubelet.go:1192] Couldn't make a ref to pod qp, container mock9003: 'selfLink was empty, can't make reference'
E0331 15:39:45.228240 2521 kubelet.go:663] Couldn't make a ref to pod qp, container mock9003: 'selfLink was empty, can't make reference'
E0331 15:39:54.776310 2521 kubelet.go:1047] Couldn't make a ref to pod "qp.url-a75326da.http": 'selfLink was empty, can't make reference'
E0331 15:39:54.828251 2521 kubelet.go:1192] Couldn't make a ref to pod qp, container mock9001: 'selfLink was empty, can't make reference'
E0331 15:39:54.830361 2521 kubelet.go:663] Couldn't make a ref to pod qp, container mock9001: 'selfLink was empty, can't make reference'
E0331 15:39:55.016561 2521 kubelet.go:1192] Couldn't make a ref to pod qp, container mock9002: 'selfLink was empty, can't make reference'
E0331 15:39:55.018950 2521 kubelet.go:663] Couldn't make a ref to pod qp, container mock9002: 'selfLink was empty, can't make reference'
E0331 15:39:55.207708 2521 kubelet.go:1192] Couldn't make a ref to pod qp, container mock9003: 'selfLink was empty, can't make reference'
E0331 15:39:55.209931 2521 kubelet.go:663] Couldn't make a ref to pod qp, container mock9003: 'selfLink was empty, can't make reference'
version: v1beta2
id: qp
containers:
- name: redisrt
image: pooogles/redis
command: ["--port", "7200"]
volumeMounts:
- name: log
mountPath: /log/plain
ports:
- name: redisrt
hostPort: 7200
containerPort: 7200
- name: redisru
image: pooogles/redis
command: ["--port", "7300"]
volumeMounts:
- name: log
mountPath: /log/plain
ports:
- name: redisru
hostPort: 7300
containerPort: 7300
- name: redisrg
image: pooogles/redis
command: ["--port", "7400"]
volumeMounts:
- name: log
mountPath: /log/plain
ports:
- name: redisrg
hostPort: 7400
containerPort: 7400
- name: redissentinel
image: pooogles/sentinel
command: ["--sentinel", "announce-ip", "172.17.42.1", "--sentinel", "announce-port", "26379"]
ports:
- name: redissentinel
hostPort: 26379
containerPort: 26379
- name: mock9001
image: pooogles/mockhttp
command: ["-addr=':9001'", "-log='/log/plain/mock-9001.log'"]
ports:
- name: mock9001
hostPort: 9001
containerPort: 9001
- name: mock9002
image: pooogles/mockhttp
command: ["-addr=':9002'", "-log='/log/plain/mock-9002.log'"]
ports:
- name: mock9002
hostPort: 9002
containerPort: 9002
- name: mock9003
image: pooogles/mockhttp
command: ["-addr=':9003'", "-log='/log/plain/mock-9003.log'"]
ports:
- name: mock9003
hostPort: 9003
containerPort: 9003
volumes:
- name: log
source:
hostDir:
path: /log/plain
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment