My packaged version of the Kubernetes HostPath provisioner
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.
 
 
Nicolas Massé a9d6ccf89f fixing some issues with the DaemonSet 9 years ago
doc add ref 9 years ago
setup fixing some issues with the DaemonSet 9 years ago
src improving the path names 9 years ago
.dockerignore reorganize project structure 9 years ago
.gitignore gitignore mess 9 years ago
Dockerfile Rename Dockerfile so that OpenShift can find it 9 years ago
README.md improving doc 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