Skip to content

Commit

Permalink
Merge pull request #17 from smallstep/multiple-intermediates
Browse files Browse the repository at this point in the history
Multiple intermediates
  • Loading branch information
maraino committed Oct 1, 2021
2 parents 8555720 + d2446e3 commit 370cc68
Show file tree
Hide file tree
Showing 6 changed files with 489 additions and 188 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
@@ -1,6 +1,6 @@
language: go
go:
- 1.16.x
- 1.17.x
env:
global:
- V=1
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -16,7 +16,7 @@ else
GOBIN=$(shell go env GOBIN)
endif

all: build lint test
all: lint test build

.PHONY: all

Expand All @@ -26,7 +26,7 @@ all: build lint test

bootstra%:
# Using a released version of golangci-lint to take into account custom replacements in their go.mod
$Q curl -sSfL https://raw.githubusercontent.com/smallstep/cli/master/make/golangci-install.sh | sh -s -- -b $(shell go env GOPATH)/bin v1.39.0
$Q curl -sSfL https://raw.githubusercontent.com/smallstep/cli/master/make/golangci-install.sh | sh -s -- -b $(shell go env GOPATH)/bin v1.42.1

.PHONY: bootstra%

Expand Down
1 change: 1 addition & 0 deletions api/v1beta1/zz_generated.deepcopy.go

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

21 changes: 10 additions & 11 deletions go.mod
Expand Up @@ -3,15 +3,14 @@ module github.com/smallstep/step-issuer
go 1.13

require (
github.com/go-logr/logr v0.3.0
github.com/jetstack/cert-manager v1.3.1
github.com/onsi/ginkgo v1.14.1
github.com/onsi/gomega v1.10.2
github.com/smallstep/certificates v0.17.1
k8s.io/api v0.20.2
k8s.io/apiextensions-apiserver v0.20.2 // indirect
k8s.io/apimachinery v0.20.2
k8s.io/client-go v0.20.2
k8s.io/utils v0.0.0-20210111153108-fddb29f9d009
sigs.k8s.io/controller-runtime v0.8.3
github.com/go-logr/logr v0.4.0
github.com/jetstack/cert-manager v1.5.4
github.com/onsi/ginkgo v1.16.4
github.com/onsi/gomega v1.14.0
github.com/smallstep/certificates v0.17.4
k8s.io/api v0.21.3
k8s.io/apimachinery v0.21.3
k8s.io/client-go v0.21.3
k8s.io/utils v0.0.0-20210802155522-efc7438f0176
sigs.k8s.io/controller-runtime v0.9.2
)

0 comments on commit 370cc68

Please sign in to comment.