Skip to content

Instantly share code, notes, and snippets.

View nitisht's full-sized avatar
🎯
Focusing

Nitish Tiwari nitisht

🎯
Focusing
View GitHub Profile
@nitisht
nitisht / minio-distributed-statefulset.yaml
Last active November 23, 2021 14:44
Create a distributed Minio deployment based on StatefulSets
apiVersion: v1
kind: Service
metadata:
name: minio
labels:
app: minio
spec:
clusterIP: None
ports:
- port: 9000
@nitisht
nitisht / minio-standalone-service.yaml
Last active December 19, 2016 14:21
Minio standalone service
apiVersion: v1
kind: Service
metadata:
name: minio-service
spec:
type: LoadBalancer
ports:
- port: 9000
targetPort: 9000
protocol: TCP
@nitisht
nitisht / minio-gce-pv.yaml
Last active December 14, 2016 17:02
Persistent Volume based on GCE Disk
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
@nitisht
nitisht / minio-standalone-deployment.yaml
Last active February 28, 2020 20:18
Create a standalone Minio deployment
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: