This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v1 | |
kind: Service | |
metadata: | |
name: minio | |
labels: | |
app: minio | |
spec: | |
clusterIP: None | |
ports: | |
- port: 9000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v1 | |
kind: Service | |
metadata: | |
name: minio-service | |
spec: | |
type: LoadBalancer | |
ports: | |
- port: 9000 | |
targetPort: 9000 | |
protocol: TCP |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v1 | |
kind: PersistentVolume | |
metadata: | |
name: minio-pv-1 | |
spec: | |
# Size of your PV | |
capacity: | |
# This is limited by the size of GCE Persistent disk. | |
# For example, to create a 10 TB backend, uncomment below line | |
# storage: 10Ti |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v1 | |
kind: PersistentVolumeClaim | |
metadata: | |
# This name uniquely identifies the PVC. Will be used in deployment below. | |
name: minio-pv-claim | |
labels: | |
app: minio-storage-claim | |
spec: | |
# Read more about access modes here: http://kubernetes.io/docs/user-guide/persistent-volumes/#access-modes | |
accessModes: |
NewerOlder