Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.2 cherrypick batch #23024

Merged
merged 8 commits into from
Mar 16, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
72 changes: 36 additions & 36 deletions Godeps/Godeps.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions api/swagger-spec/extensions_v1beta1.json
Original file line number Diff line number Diff line change
Expand Up @@ -7877,8 +7877,7 @@
"id": "v1beta1.ReplicaSetStatus",
"description": "ReplicaSetStatus represents the current status of a ReplicaSet.",
"required": [
"replicas",
"fullyLabeledReplicas"
"replicas"
],
"properties": {
"replicas": {
Expand Down
3 changes: 1 addition & 2 deletions api/swagger-spec/v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -17617,8 +17617,7 @@
"id": "v1.ReplicationControllerStatus",
"description": "ReplicationControllerStatus represents the current status of a replication controller.",
"required": [
"replicas",
"fullyLabeledReplicas"
"replicas"
],
"properties": {
"replicas": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
apiVersion: v1
kind: ReplicationController
metadata:
name: heapster-v1.0.0-beta2
name: heapster-v1.0.0
namespace: kube-system
labels:
k8s-app: heapster
Expand All @@ -25,7 +25,7 @@ spec:
kubernetes.io/cluster-service: "true"
spec:
containers:
- image: gcr.io/google_containers/heapster:v1.0.0-beta2
- image: gcr.io/google_containers/heapster:v1.0.0
name: heapster
resources:
# keep request = limit to keep this container in guaranteed class
Expand All @@ -44,7 +44,7 @@ spec:
- name: ssl-certs
mountPath: /etc/ssl/certs
readOnly: true
- image: gcr.io/google_containers/heapster:v1.0.0-beta2
- image: gcr.io/google_containers/heapster:v1.0.0
name: eventer
resources:
# keep request = limit to keep this container in guaranteed class
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
{% set num_nodes = pillar.get('num_nodes', -1) -%}
{% if num_nodes >= 0 -%}
{% set metrics_memory = (200 + num_nodes * 4)|string + "Mi" -%}
{% set eventer_memory = (200000 + num_nodes * 500)|string + "Ki" -%}
{% set eventer_memory = (200 * 1024 + num_nodes * 500)|string + "Ki" -%}
{% endif -%}

apiVersion: v1
kind: ReplicationController
metadata:
name: heapster-v1.0.0-beta2
name: heapster-v1.0.0
namespace: kube-system
labels:
k8s-app: heapster
Expand All @@ -25,7 +25,7 @@ spec:
kubernetes.io/cluster-service: "true"
spec:
containers:
- image: gcr.io/google_containers/heapster:v1.0.0-beta2
- image: gcr.io/google_containers/heapster:v1.0.0
name: heapster
resources:
# keep request = limit to keep this container in guaranteed class
Expand All @@ -45,7 +45,7 @@ spec:
- name: ssl-certs
mountPath: /etc/ssl/certs
readOnly: true
- image: gcr.io/google_containers/heapster:v1.0.0-beta2
- image: gcr.io/google_containers/heapster:v1.0.0
name: eventer
resources:
# keep request = limit to keep this container in guaranteed class
Expand Down