Skip to content
This repository has been archived by the owner on Dec 18, 2019. It is now read-only.

Commit

Permalink
Merge pull request #177 from aliok/AEROGEAR-9985
Browse files Browse the repository at this point in the history
AEROGEAR-9985 - Upgrade mss-operator to operator-sdk v0.10.0
  • Loading branch information
aliok committed Oct 8, 2019
2 parents a2ca36e + bd69506 commit 97ff907
Show file tree
Hide file tree
Showing 10 changed files with 337 additions and 291 deletions.
20 changes: 13 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ jobs:
working_directory: /go/src/github.com/aerogear/mobile-security-service-operator

docker:
- image: circleci/golang:1.10
- image: circleci/golang:1.12
environment:
GO111MODULE: "off"

steps:
- checkout
Expand All @@ -17,7 +19,7 @@ jobs:
command: curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
- run:
name: Install operator-sdk to run make setup
command: curl -Lo operator-sdk https://github.com/operator-framework/operator-sdk/releases/download/v0.8.1/operator-sdk-v0.8.1-x86_64-linux-gnu && chmod +x operator-sdk && sudo mv operator-sdk /usr/local/bin/
command: curl -Lo operator-sdk https://github.com/operator-framework/operator-sdk/releases/download/v0.10.0/operator-sdk-v0.10.0-x86_64-linux-gnu && chmod +x operator-sdk && sudo mv operator-sdk /usr/local/bin/
- run: make setup
- run: make code/build/linux
- run: make test/run
Expand All @@ -27,15 +29,17 @@ jobs:
image_push_master:
working_directory: /go/src/github.com/aerogear/mobile-security-service-operator
docker:
- image: circleci/golang:1.10
- image: circleci/golang:1.12
environment:
GO111MODULE: "off"
steps:
- checkout
- run:
name: Install dep
command: curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
- run:
name: Install operator-sdk to build image
command: curl -Lo operator-sdk https://github.com/operator-framework/operator-sdk/releases/download/v0.8.1/operator-sdk-v0.8.1-x86_64-linux-gnu && chmod +x operator-sdk && sudo mv operator-sdk /usr/local/bin/
command: curl -Lo operator-sdk https://github.com/operator-framework/operator-sdk/releases/download/v0.10.0/operator-sdk-v0.10.0-x86_64-linux-gnu && chmod +x operator-sdk && sudo mv operator-sdk /usr/local/bin/
- run: make setup
# circle ci key required for docker builds
- setup_remote_docker
Expand All @@ -46,15 +50,17 @@ jobs:
image_release:
working_directory: /go/src/github.com/aerogear/mobile-security-service-operator
docker:
- image: circleci/golang:1.10
- image: circleci/golang:1.12
environment:
GO111MODULE: "off"
steps:
- checkout
- run:
name: Install dep
command: curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
- run:
name: Install operator-sdk to build image
command: curl -Lo operator-sdk https://github.com/operator-framework/operator-sdk/releases/download/v0.8.1/operator-sdk-v0.8.1-x86_64-linux-gnu && chmod +x operator-sdk && sudo mv operator-sdk /usr/local/bin/
command: curl -Lo operator-sdk https://github.com/operator-framework/operator-sdk/releases/download/v0.10.0/operator-sdk-v0.10.0-x86_64-linux-gnu && chmod +x operator-sdk && sudo mv operator-sdk /usr/local/bin/
- run: make setup
# circle ci key required for docker builds
- setup_remote_docker
Expand Down Expand Up @@ -83,4 +89,4 @@ workflows:
tags:
only: /\d{1,2}\.\d{1,2}\.\d{1,2}/
branches:
ignore: /.*/
ignore: /.*/
Loading

0 comments on commit 97ff907

Please sign in to comment.