This repository has been archived by the owner on Nov 9, 2022. It is now read-only.
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 17
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 #156 from darkowlzz/go1.12.9
Update to go 1.12.9
- Loading branch information
Showing
5 changed files
with
30 additions
and
30 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
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ sudo: required | |
language: go | ||
|
||
go: | ||
- "1.11" | ||
- "1.12.9" | ||
|
||
env: | ||
global: | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
ARG BUILD_IMAGE=golang:1.12.5 | ||
ARG BUILD_IMAGE=golang:1.12.9 | ||
ARG BASE_IMAGE=storageos/base-image:0.1.0 | ||
ARG OPERATOR_IMAGE=storageos/cluster-operator:test | ||
|
||
|
@@ -15,18 +15,18 @@ RUN make build/upgrader | |
|
||
FROM ${BASE_IMAGE} | ||
LABEL name="StorageOS Cluster Operator" \ | ||
maintainer="[email protected]" \ | ||
vendor="StorageOS" \ | ||
version="1.3.0" \ | ||
release="1" \ | ||
distribution-scope="public" \ | ||
architecture="x86_64" \ | ||
url="https://docs.storageos.com" \ | ||
io.k8s.description="The StorageOS Cluster Operator installs and manages StorageOS within a cluster." \ | ||
io.k8s.display-name="StorageOS Cluster Operator" \ | ||
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." | ||
maintainer="[email protected]" \ | ||
vendor="StorageOS" \ | ||
version="1.3.0" \ | ||
release="1" \ | ||
distribution-scope="public" \ | ||
architecture="x86_64" \ | ||
url="https://docs.storageos.com" \ | ||
io.k8s.description="The StorageOS Cluster Operator installs and manages StorageOS within a cluster." \ | ||
io.k8s.display-name="StorageOS Cluster Operator" \ | ||
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." | ||
|
||
# Docker is required by the upgrader to pre-load images. Only `docker pull` is | ||
# used. `podman` would be preferred but it's not available in the package repo, | ||
|
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,8 +1,8 @@ | ||
# ARG BUILD_IMAGE=golang:1.12.5 | ||
# ARG BUILD_IMAGE=golang:1.12.9 | ||
# ARG BASE_IMAGE=storageos/base-image:0.1.0 | ||
# ARG OPERATOR_IMAGE=storageos/cluster-operator:test | ||
|
||
FROM golang:1.12.5 AS build | ||
FROM golang:1.12.9 AS build | ||
# OPERATOR_IMAGE needs to be passed to build/cluster-operator for constructing | ||
# the ldflags. | ||
# ARG OPERATOR_IMAGE | ||
|
@@ -16,18 +16,18 @@ RUN make build/upgrader | |
|
||
FROM storageos/base-image:0.1.0 | ||
LABEL name="StorageOS Cluster Operator" \ | ||
maintainer="[email protected]" \ | ||
vendor="StorageOS" \ | ||
version="1.3.0" \ | ||
release="1" \ | ||
distribution-scope="public" \ | ||
architecture="x86_64" \ | ||
url="https://docs.storageos.com" \ | ||
io.k8s.description="The StorageOS Cluster Operator installs and manages StorageOS within a cluster." \ | ||
io.k8s.display-name="StorageOS Cluster Operator" \ | ||
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." | ||
maintainer="[email protected]" \ | ||
vendor="StorageOS" \ | ||
version="1.3.0" \ | ||
release="1" \ | ||
distribution-scope="public" \ | ||
architecture="x86_64" \ | ||
url="https://docs.storageos.com" \ | ||
io.k8s.description="The StorageOS Cluster Operator installs and manages StorageOS within a cluster." \ | ||
io.k8s.display-name="StorageOS Cluster Operator" \ | ||
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." | ||
|
||
# Docker is required by the upgrader to pre-load images. Only `docker pull` is | ||
# used. `podman` would be preferred but it's not available in the package repo, | ||
|