mirror of
https://github.com/weaveworks/scope.git
synced 2026-08-18 03:46:45 +00:00
* Make the example work on kubernetes * Example app: Launch weave if not running.
18 lines
304 B
YAML
18 lines
304 B
YAML
apiVersion: extensions/v1beta1
|
|
kind: Deployment
|
|
metadata:
|
|
name: redis
|
|
spec:
|
|
replicas: 1
|
|
template:
|
|
metadata:
|
|
labels:
|
|
name: redis
|
|
spec:
|
|
containers:
|
|
- name: redis
|
|
image: redis
|
|
imagePullPolicy: IfNotPresent
|
|
ports:
|
|
- containerPort: 6379
|