Update to lastest version
This commit is contained in:
parent
4d58ef6787
commit
3918431f62
15 changed files with 267 additions and 225 deletions
39
templates/deploy.yaml.j2
Normal file
39
templates/deploy.yaml.j2
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
# borrowed from https://cloud.weave.works/k8s/scope.yaml?k8s-version=1.9.3
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: weave-scope-app
|
||||
labels:
|
||||
name: weave-scope-app
|
||||
app: weave-scope
|
||||
weave-cloud-component: scope
|
||||
weave-scope-component: app
|
||||
namespace: weave
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
app: weave-scope
|
||||
revisionHistoryLimit: 2
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
name: weave-scope-app
|
||||
app: weave-scope
|
||||
weave-cloud-component: scope
|
||||
weave-scope-component: app
|
||||
spec:
|
||||
containers:
|
||||
- name: app
|
||||
args:
|
||||
- '--no-probe'
|
||||
env: []
|
||||
image: weaveworks/scope:{{ scope_version }}
|
||||
imagePullPolicy: IfNotPresent
|
||||
ports:
|
||||
- containerPort: 4040
|
||||
protocol: TCP
|
||||
resources:
|
||||
requests:
|
||||
cpu: 200m
|
||||
memory: 200Mi
|
||||
Loading…
Add table
Add a link
Reference in a new issue