Skip to content
Snippets Groups Projects
Commit 2384ed35 authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

Merge branch...

Merge branch 'feat/140-grafana-settings-lost-when-host-ethernet-interface-goes-down-and-back-up' into 'develop'

Resolve "Grafana settings lost when host ethernet interface goes down and back up"

See merge request !310
parents 5611740a f7ee688c
No related branches found
No related tags found
2 merge requests!359Release TeraFlowSDN 5.0,!310Resolve "Grafana settings lost when host ethernet interface goes down and back up"
......@@ -12,6 +12,17 @@
# See the License for the specific language governing permissions and
# limitations under the License.
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: grafana-pvc
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi
---
apiVersion: apps/v1
kind: Deployment
metadata:
......@@ -99,6 +110,13 @@ spec:
limits:
cpu: 500m
memory: 1024Mi
volumeMounts:
- mountPath: /var/lib/grafana
name: grafana-pv
volumes:
- name: grafana-pv
persistentVolumeClaim:
claimName: grafana-pvc
---
apiVersion: v1
kind: Service
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment