Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id E0CEE200D26 for ; Fri, 6 Oct 2017 04:11:58 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id DF443160BDA; Fri, 6 Oct 2017 02:11:58 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 57BBF1609E2 for ; Fri, 6 Oct 2017 04:11:58 +0200 (CEST) Received: (qmail 78997 invoked by uid 500); 6 Oct 2017 02:11:57 -0000 Mailing-List: contact dev-help@ignite.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ignite.apache.org Delivered-To: mailing list dev@ignite.apache.org Received: (qmail 78947 invoked by uid 99); 6 Oct 2017 02:11:57 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 06 Oct 2017 02:11:57 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 6A235F5C97; Fri, 6 Oct 2017 02:11:55 +0000 (UTC) From: dwimsey To: dev@ignite.apache.org Reply-To: dev@ignite.apache.org Message-ID: Subject: [GitHub] ignite pull request #2812: Modify permissions on $IGNITE_HOME path for OpenS... Content-Type: text/plain Date: Fri, 6 Oct 2017 02:11:55 +0000 (UTC) archived-at: Fri, 06 Oct 2017 02:11:59 -0000 GitHub user dwimsey opened a pull request: https://github.com/apache/ignite/pull/2812 Modify permissions on $IGNITE_HOME path for OpenShift Most OpenShift environments run containers using a randomized user id for security purposes. The user is always a member of group 0 however, so we modify the owner and permissions of the ignite installation to allow the container to initialize properly. Reference: https://docs.openshift.com/container-platform/3.6/creating_images/guidelines.html#use-uid You can merge this pull request into a Git repository by running: $ git pull https://github.com/dwimsey/ignite bugfix/openshift-permissions Alternatively you can review and apply these changes as the patch at: https://github.com/apache/ignite/pull/2812.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #2812 ---- commit 4dc681a0b3cd12c2c690ff92f91b549b27dadd71 Author: David Wimsey Date: 2017-10-06T02:06:37Z Modify permissions on $IGNITE_HOME path for OpenShift Most OpenShift environments run containers using a randomized user id for security purposes. The user is always a member of group 0 however, so we modify the owner and permissions of the ignite installation to allow the container to initialize properly. ---- ---