aboutsummaryrefslogtreecommitdiffstats
path: root/vnfs/DAaaS/microservices/visualization-operator/deploy/operator.yaml
diff options
context:
space:
mode:
authorSrivahni <srivahni.chivukula@intel.com>2019-08-05 15:39:34 -0700
committerMarco Platania <platania@research.att.com>2019-08-11 21:50:15 +0000
commitcda9d563ef843be5f80ce5755cb291c68dc6e3e8 (patch)
tree463fa10ee2c6399b0d33b2b4f7b04daa8240f223 /vnfs/DAaaS/microservices/visualization-operator/deploy/operator.yaml
parentd9eab4e0325f26d8e05263413e3af5a1bf9ed046 (diff)
Skeletal code for visualization-operator
This visualization-operator(based on operator-sdk) when deployed, should be able to manage(add/update/delete) the datasources dynamically without restarting the grafana pods. Issue-ID: ONAPARC-393 Signed-off-by: Srivahni <srivahni.chivukula@intel.com> Change-Id: I2df3659aca5dd9ad59cf58adaf3c30999829fa2f
Diffstat (limited to 'vnfs/DAaaS/microservices/visualization-operator/deploy/operator.yaml')
-rw-r--r--vnfs/DAaaS/microservices/visualization-operator/deploy/operator.yaml33
1 files changed, 33 insertions, 0 deletions
diff --git a/vnfs/DAaaS/microservices/visualization-operator/deploy/operator.yaml b/vnfs/DAaaS/microservices/visualization-operator/deploy/operator.yaml
new file mode 100644
index 00000000..6c37f312
--- /dev/null
+++ b/vnfs/DAaaS/microservices/visualization-operator/deploy/operator.yaml
@@ -0,0 +1,33 @@
+apiVersion: apps/v1
+kind: Deployment
+metadata:
+ name: visualization-operator
+spec:
+ replicas: 1
+ selector:
+ matchLabels:
+ name: visualization-operator
+ template:
+ metadata:
+ labels:
+ name: visualization-operator
+ spec:
+ serviceAccountName: visualization-operator
+ containers:
+ - name: visualization-operator
+ # Replace this with the built image name
+ image: REPLACE_IMAGE
+ command:
+ - visualization-operator
+ imagePullPolicy: Always
+ env:
+ - name: WATCH_NAMESPACE
+ valueFrom:
+ fieldRef:
+ fieldPath: metadata.namespace
+ - name: POD_NAME
+ valueFrom:
+ fieldRef:
+ fieldPath: metadata.name
+ - name: OPERATOR_NAME
+ value: "visualization-operator"