Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ DIR := ${CURDIR}
IMG ?= hypershift:latest
# Produce CRDs that work back to Kubernetes 1.11 (no version conversion)
CRD_OPTIONS ?= "crd:trivialVersions=true"
# Runtime CLI to use for building and pushing images
RUNTIME ?= docker

CONTROLLER_GEN=GO111MODULE=on GOFLAGS=-mod=vendor go run ./vendor/sigs.k8s.io/controller-tools/cmd/controller-gen
BINDATA=GO111MODULE=on GOFLAGS=-mod=vendor go run ./vendor/github.com/kevinburke/go-bindata/go-bindata
Expand Down Expand Up @@ -79,11 +81,11 @@ vet:

# Build the docker image
docker-build:
docker build . -t ${IMG}
${RUNTIME} build . -t ${IMG}

# Push the docker image
docker-push:
docker push ${IMG}
${RUNTIME} push ${IMG}

run-local:
bin/hypershift-operator run
Expand Down
4 changes: 2 additions & 2 deletions config/example-cluster/cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ metadata:
name: example
spec:
release:
image: quay.io/openshift-release-dev/ocp-release:4.6.7-x86_64
image: quay.io/openshift-release-dev/ocp-release:4.7.0-fc.3-x86_64
initialComputeReplicas: 2
serviceCIDR: 172.31.0.0/16
podCIDR: 10.132.0.0/14
Expand All @@ -13,4 +13,4 @@ spec:
sshKey:
name: ssh-key
providerCreds:
name: provider-creds
name: provider-creds
24 changes: 12 additions & 12 deletions hypershift-operator/assets/controlplane/hypershift/bindata.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading