Skip to content

Commit 325c7b7

Browse files
author
OpenShift Bot
committed
Merge pull request #3702 from gabemontero/issue2740
Merged by openshift-bot
2 parents 2f8ff89 + 0418122 commit 325c7b7

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

docs/debugging-openshift.md

+14
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,20 @@ If this shows up in your build logs, restart docker and then resubmit a build:
6666
$ sudo systemctl restart docker
6767
$ oc start-build <your build identifier>
6868

69+
Another item seen stems from how OpenShift operates in a SELinux environment. The SELinux policy requires that host directories that are bind mounted have the svirt_sandbox_file_t label. Generally
70+
this simply happens for you under the covers, but there is a growing list of user operations which hamper the registry deployment to the point where the svrt_sandbox_file_t label ends up missing, and you can see
71+
various authentication or push failures. One example, when initiating a build:
72+
73+
Failed to push image: Error pushing to registry: Server error: unexpected 500 response status trying to initiate upload of test/origin-ruby-sample
74+
75+
And when inspecting the Docker registry, you will see messages like this:
76+
77+
173.17.42.1 - - [03/Jun/2015:13:26:19 +0000] "POST /v2/test/origin-ruby-sample/blobs/uploads/ HTTP/1.1" 500 203 "" "docker/1.6.0 go/go1.4.2 kernel/3.17.4-301.fc21.x86_64 os/linux arch/amd64"
78+
79+
When this sequence occurs, without needing to restart Docker nor OpenShift, you can work around it by running the following command:
80+
81+
$ sudo chcon -R -t svirt_sandbox_file_t < path to >/openshift.local.volumes
82+
6983
Docker Registry
7084
---------------
7185

0 commit comments

Comments
 (0)