Skip to content

Commit

Permalink
minor beautifications and added eg
Browse files Browse the repository at this point in the history
  • Loading branch information
sreesanpd authored Aug 6, 2020
1 parent 15f432e commit 0ae25c9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions kubernetes-resources/filestore-backups-cronjob-sample.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ spec:
accessModes:
- ReadWriteMany
nfs:
server: "<IP address of google filestore primary instance>"
path: "<fileshare name of the google filestore primary instance>" ## eg: /vol1
server: <IP address of google filestore primary instance>
path: <fileshare name of the google filestore primary instance> ## eg: /vol1
---
apiVersion: v1
kind: PersistentVolumeClaim
Expand All @@ -35,8 +35,8 @@ spec:
accessModes:
- ReadWriteMany
nfs:
server: "<IP address of google filestore secondary instance>"
path: "<fileshare name of the google filestore secondary instance>" ## eg: /vol1
server: <IP address of google filestore secondary instance>
path: <fileshare name of the google filestore secondary instance> ## eg: /vol1
---
apiVersion: v1
kind: PersistentVolumeClaim
Expand All @@ -56,7 +56,7 @@ metadata:
name: filestore-backup
type: Opaque
data:
gcp_gcloud_auth: "<Base64 encoded Service Account Key>"
gcp_gcloud_auth: <Base64 encoded Service Account Key>
---
apiVersion: batch/v1beta1
kind: CronJob
Expand All @@ -70,7 +70,7 @@ spec:
spec:
containers:
- name: filestore-backup
image: "<Docker Image URL>"
image: <Docker Image URL>
imagePullPolicy: Always
volumeMounts:
- name: primary-filestore
Expand Down

0 comments on commit 0ae25c9

Please sign in to comment.