You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
9 years ago | |
|---|---|---|
| doc | 9 years ago | |
| setup | 9 years ago | |
| src | 9 years ago | |
| .dockerignore | 9 years ago | |
| .gitignore | 9 years ago | |
| Dockerfile | 9 years ago | |
| README.md | 9 years ago | |
README.md
An Hostpath Provisioner for OpenShift
If you just want to use it
Setup
$ mkdir /tmp/openshift
$ chmod 777 /tmp/openshift
$ chcon -Rt svirt_sandbox_file_t /tmp/openshift
$ oc project default
$ oc process -f setup/hostpath-provisioner-template.yaml > objects.json
$ oc create -f objects.json
Test
$ oc project my-project
$ oc create -f setup/sample-claim.yaml
$ ls -l /tmp/openshift/
Cleanup
$ oc project default
$ oc delete all -f objects.json
If you want to hack it
Build
$ export GOPATH="$PWD"
$ cd src
$ glide install -v
$ CGO_ENABLED=0 go build -a -ldflags '-extldflags "-static"' -o ../hostpath-provisioner hostpath-provisioner/hostpath-provisioner.go
Package
$ docker build -t openshift-hostpath-provisioner:latest .
Setup
$ oc project default
$ oc process -f setup/hostpath-provisioner-template.yaml -p HOSTPATH_PROVISIONER_IMAGE=openshift-hostpath-provisioner:latest | oc create -f -
Test
$ oc project my-project
$ oc create -f setup/sample-claim.yaml
$ ls -l /tmp/openshift/
Cleanup
$ oc project default
$ oc delete all -l template=hostpath-provisioner-template
$ oc delete clusterrolebinding hostpath-provisioner
$ oc delete clusterrole hostpath-provisioner
$ oc delete scc hostpath-provisioner
$ oc delete sa hostpath-provisioner
Pushing your image to DockerHub (Optional)
$ docker login https://index.docker.io/v1/
$ docker images openshift-hostpath-provisioner:latest --format '{{ .ID }}'
$ docker tag $(docker images openshift-hostpath-provisioner:latest --format '{{ .ID }}') index.docker.io/<your-username>/openshift-hostpath-provisioner
$ docker push index.docker.io/<your-username>/openshift-hostpath-provisioner