-
Notifications
You must be signed in to change notification settings - Fork 274
openshift comply #220
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
openshift comply #220
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -12,9 +12,22 @@ | |
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
|
|
||
| # NOTE that since OpenShift Container Platform 3.11 | ||
| # the container catalog moved from registry.access.redhat.com to registry.redhat.io | ||
| # So at some point before they deprecate the old registry we have to make sure that | ||
| # we have access to the new registry and change where we pull the ubi image from. | ||
| FROM registry.access.redhat.com/ubi8/ubi-minimal | ||
| LABEL maintainer="support@splunk.com" | ||
| LABEL name="splunk" \ | ||
| maintainer="support@splunk.com" \ | ||
| vendor="splunk" \ | ||
| version="7.3.1" \ | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is fine to hardcode for now, but in the future we should update this to be whatever the splunk version is from our Makefile |
||
| release="1" \ | ||
| summary="UBI 8 Docker image of Splunk Enterprise" \ | ||
| description="Splunk Enterprise is a platform for operational intelligence. Our software lets you collect, analyze, and act upon the untapped value of big data that your technology infrastructure, security systems, and business applications generate. It gives you insights to drive operational performance and business results." | ||
|
|
||
| RUN mkdir /licenses; \ | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We should probably combine this with the RUN command below, so that we are not unnecessarily creating an additional image layer. |
||
| curl -o /licenses/apache-2.0.txt https://www.apache.org/licenses/LICENSE-2.0.txt; \ | ||
| curl -o /licenses/EULA_Red_Hat_Universal_Base_Image_English_20190422.pdf https://www.redhat.com/licenses/EULA_Red_Hat_Universal_Base_Image_English_20190422.pdf | ||
|
|
||
| COPY install.sh /install.sh | ||
| COPY EULA_Red_Hat_Universal_Base_Image_English_20190422.pdf /EULA_Red_Hat_Universal_Base_Image_English_20190422.pdf | ||
| RUN /install.sh && rm -rf /install.sh | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please your provide reference for this, since all the docs for UBI images seem to reference registry.access.redhat.com, and these were published concurrent with the release of 4.0, which is long after 3.11 was released.