Merge pull request #342 from vincepower/patch-1

Updating README.md to have correct URLs
This commit is contained in:
Kubernetes Prow Robot 2019-09-11 03:01:24 -07:00 committed by GitHub
commit f714111b52
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 13 deletions

View File

@ -41,9 +41,9 @@ This section uses following core components of Kubernetes:
Run the below commands to get started quickly Run the below commands to get started quickly
```sh ```sh
kubectl create -f https://github.com/kubernetes/kubernetes/blob/master/examples/storage/minio/minio-standalone-pvc.yaml?raw=true kubectl create -f https://raw.githubusercontent.com/kubernetes/examples/master/staging/storage/minio/minio-standalone-pvc.yaml
kubectl create -f https://github.com/kubernetes/kubernetes/blob/master/examples/storage/minio/minio-standalone-deployment.yaml?raw=true kubectl create -f https://raw.githubusercontent.com/kubernetes/examples/master/staging/storage/minio/minio-standalone-deployment.yaml
kubectl create -f https://github.com/kubernetes/kubernetes/blob/master/examples/storage/minio/minio-standalone-service.yaml?raw=true kubectl create -f https://raw.githubusercontent.com/kubernetes/examples/master/staging/storage/minio/minio-standalone-service.yaml
``` ```
### Step 1: Create Persistent Volume Claim ### Step 1: Create Persistent Volume Claim
@ -61,13 +61,13 @@ kind: PersistentVolumeClaim
metadata: metadata:
# This name uniquely identifies the PVC. Will be used in deployment below. # This name uniquely identifies the PVC. Will be used in deployment below.
name: minio-pv-claim name: minio-pv-claim
storageClassName: standard
labels: labels:
app: minio-storage-claim app: minio-storage-claim
spec: spec:
# Read more about access modes here: http://kubernetes.io/docs/user-guide/persistent-volumes/#access-modes # Read more about access modes here: http://kubernetes.io/docs/user-guide/persistent-volumes/#access-modes
accessModes: accessModes:
- ReadWriteOnce - ReadWriteOnce
storageClassName: standard
resources: resources:
# This is the request for storage. Should be available in the cluster. # This is the request for storage. Should be available in the cluster.
requests: requests:
@ -77,7 +77,7 @@ spec:
Create the PersistentVolumeClaim Create the PersistentVolumeClaim
```sh ```sh
kubectl create -f https://github.com/kubernetes/kubernetes/blob/master/examples/storage/minio/minio-standalone-pvc.yaml?raw=true kubectl create -f https://raw.githubusercontent.com/kubernetes/examples/master/staging/storage/minio/minio-standalone-pvc.yaml
persistentvolumeclaim "minio-pv-claim" created persistentvolumeclaim "minio-pv-claim" created
``` ```
@ -136,7 +136,7 @@ spec:
Create the Deployment Create the Deployment
```sh ```sh
kubectl create -f https://github.com/kubernetes/kubernetes/blob/master/examples/storage/minio/minio-standalone-deployment.yaml?raw=true kubectl create -f https://raw.githubusercontent.com/kubernetes/examples/master/staging/storage/minio/minio-standalone-deployment.yaml
deployment "minio-deployment" created deployment "minio-deployment" created
``` ```
@ -163,7 +163,7 @@ spec:
Create the Minio service Create the Minio service
```sh ```sh
kubectl create -f https://github.com/kubernetes/kubernetes/blob/master/examples/storage/minio/minio-standalone-service.yaml?raw=true kubectl create -f https://raw.githubusercontent.com/kubernetes/examples/master/staging/storage/minio/minio-standalone-service.yaml
service "minio-service" created service "minio-service" created
``` ```
@ -199,9 +199,9 @@ This example uses following core components of Kubernetes:
Run the below commands to get started quickly Run the below commands to get started quickly
```sh ```sh
kubectl create -f https://github.com/kubernetes/kubernetes/blob/master/examples/storage/minio/minio-distributed-headless-service.yaml?raw=true kubectl create -f https://raw.githubusercontent.com/kubernetes/examples/master/staging/storage/minio/minio-distributed-headless-service.yaml
kubectl create -f https://github.com/kubernetes/kubernetes/blob/master/examples/storage/minio/minio-distributed-statefulset.yaml?raw=true kubectl create -f https://raw.githubusercontent.com/kubernetes/examples/master/staging/storage/minio/minio-distributed-statefulset.yaml
kubectl create -f https://github.com/kubernetes/kubernetes/blob/master/examples/storage/minio/minio-distributed-service.yaml?raw=true kubectl create -f https://raw.githubusercontent.com/kubernetes/examples/master/staging/storage/minio/minio-distributed-service.yaml
``` ```
### Step 1: Create Minio Headless Service ### Step 1: Create Minio Headless Service
@ -229,7 +229,7 @@ spec:
Create the Headless Service Create the Headless Service
```sh ```sh
$ kubectl create -f https://github.com/kubernetes/kubernetes/blob/master/examples/storage/minio/minio-distributed-headless-service.yaml?raw=true $ kubectl create -f https://raw.githubusercontent.com/kubernetes/examples/master/staging/storage/minio/minio-distributed-headless-service.yaml
service "minio" created service "minio" created
``` ```
@ -297,7 +297,7 @@ spec:
Create the Statefulset Create the Statefulset
```sh ```sh
$ kubectl create -f https://github.com/kubernetes/kubernetes/blob/master/examples/storage/minio/minio-distributed-statefulset.yaml?raw=true $ kubectl create -f https://raw.githubusercontent.com/kubernetes/examples/master/staging/storage/minio/minio-distributed-statefulset.yaml
statefulset "minio" created statefulset "minio" created
``` ```
@ -324,7 +324,7 @@ spec:
Create the Minio service Create the Minio service
```sh ```sh
$ kubectl create -f https://github.com/kubernetes/kubernetes/blob/master/examples/storage/minio/minio-distributed-service.yaml?raw=true $ kubectl create -f https://raw.githubusercontent.com/kubernetes/examples/master/staging/storage/minio/minio-distributed-service.yaml
service "minio-service" created service "minio-service" created
``` ```