Last active
December 2, 2016 03:40
-
-
Save yifan-gu/717501e8fff00c32fbac0f0f758c4309 to your computer and use it in GitHub Desktop.
tectonic-version-example-1.4.5-fake.json (for jenkins e2e test, don't change)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "version": "1.4.5", | |
| "deployments": [ | |
| { | |
| "apiVersion": "extensions/v1beta1", | |
| "kind": "Deployment", | |
| "metadata": { | |
| "name": "fake-kube-version-operator", | |
| "namespace": "tectonic-system", | |
| "labels": { | |
| "k8s-app": "fake-kube-version-operator" | |
| } | |
| }, | |
| "spec": { | |
| "replicas": 1, | |
| "template": { | |
| "metadata": { | |
| "labels": { | |
| "k8s-app": "fake-kube-version-operator" | |
| } | |
| }, | |
| "spec": { | |
| "containers": [ | |
| { | |
| "name": "fake-kube-version-operator", | |
| "image": "busybox", | |
| "command": [ | |
| "sleep", | |
| "3600" | |
| ] | |
| } | |
| ], | |
| "imagePullSecrets": [ | |
| { | |
| "name": "coreos-pull-secret" | |
| } | |
| ] | |
| } | |
| } | |
| } | |
| } | |
| ], | |
| "desiredVersions": [ | |
| { | |
| "name": "kubernetes", | |
| "version": "1.4.5+coreos.0" | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment