Skip to content
This repository was archived by the owner on Aug 12, 2025. It is now read-only.
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
3 changes: 3 additions & 0 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,11 @@ steps:
- name: test
pull: always
image: golang:1.14.2-alpine3.11
environment:
CGO_ENABLED: 0
commands:
- apk --update add make git bash jq curl
- make kubebuilder
- make test

- name: image
Expand Down
5 changes: 1 addition & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
.PHONY: vendor test manager clusterctl run install deploy manifests generate fmt vet run kubebuilder ci cd

#KUBEBUILDER_VERSION ?= 2.3.0
# because of a known bug in 2.3.0, notably the one fixed in https://github.com/kubernetes-sigs/kubebuilder/pull/1417
# we will use master until 2.3.1 (or 2.4.0) comes out
KUBEBUILDER_VERSION ?= master
KUBEBUILDER_VERSION ?= 2.3.1
KUBEBUILDER ?= /usr/local/kubebuilder/bin/kubebuilder

GIT_VERSION?=$(shell git log -1 --format="%h")
Expand Down