This repository is currently being migrated. It's locked while the migration is in progress.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from storageos/rh-certification
Add metadata for RH certification, bump to 1.0.1
- Loading branch information
Showing
3 changed files
with
38 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,28 @@ | ||
FROM golang:1.12.9 AS build | ||
FROM golang:1.13.5 AS build | ||
|
||
WORKDIR /go/src/github.com/storageos/init/ | ||
COPY . /go/src/github.com/storageos/init/ | ||
RUN make build | ||
|
||
FROM registry.access.redhat.com/ubi8/ubi | ||
LABEL name="StorageOS Init" \ | ||
maintainer="support@storageos.com" \ | ||
vendor="StorageOS" \ | ||
version="1.0.1" \ | ||
release="1" \ | ||
distribution-scope="public" \ | ||
architecture="x86_64" \ | ||
url="https://docs.storageos.com" \ | ||
io.k8s.description="The StorageOS Init container prepares a node for running StorageOS." \ | ||
io.k8s.display-name="StorageOS Init" \ | ||
io.openshift.tags="storageos,storage,operator,pv,pvc,storageclass,persistent,csi" \ | ||
summary="Highly-available persistent block storage for containerized applications." \ | ||
description="StorageOS transforms commodity server or cloud based disk capacity into enterprise-class storage to run persistent workloads such as databases in containers. Provides high availability, low latency persistent block storage. No other hardware or software is required." | ||
|
||
RUN yum -y update && \ | ||
yum -y install --disableplugin=subscription-manager kmod | ||
|
||
COPY scripts/ /scripts | ||
COPY --from=build /go/src/github.com/storageos/init/LICENSE /licenses/ | ||
COPY --from=build /go/src/github.com/storageos/init/build/_output/bin/init /init | ||
CMD /init -scripts=/scripts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters