Skip to content

Commit

Permalink
Fix #113 v0.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
rimusz committed Sep 8, 2021
1 parent 978d1b6 commit c890bee
Show file tree
Hide file tree
Showing 6 changed files with 395 additions and 115 deletions.
1 change: 0 additions & 1 deletion .dockerignore

This file was deleted.

2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.15-alpine AS builder
FROM golang:1.16-alpine AS builder

ARG srcpath="/build/hostpath-provisioner"

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
IMAGE?=quay.io/rimusz/hostpath-provisioner

TAG_GIT=$(IMAGE):v0.2.4
TAG_GIT=$(IMAGE):v0.2.5
TAG_LATEST=$(IMAGE):latest

PHONY: test-image
Expand Down
45 changes: 6 additions & 39 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,44 +1,11 @@
module github.com/rimusz/hostpath-provisioner

require (
github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/gogo/protobuf v1.1.1 // indirect
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
github.com/golang/groupcache v0.0.0-20181024230925-c65c006176ff // indirect
github.com/golang/protobuf v1.2.0 // indirect
github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c // indirect
github.com/google/gofuzz v0.0.0-20170612174753-24818f796faf // indirect
github.com/googleapis/gnostic v0.2.0 // indirect
github.com/gregjones/httpcache v0.0.0-20181110185634-c63ab54fda8f // indirect
github.com/hashicorp/golang-lru v0.5.0 // indirect
github.com/json-iterator/go v1.1.5 // indirect
github.com/kubernetes-sigs/sig-storage-lib-external-provisioner v1.0.0
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
github.com/miekg/dns v1.0.15 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.1 // indirect
github.com/pborman/uuid v1.2.0 // indirect
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
github.com/prometheus/client_golang v0.9.1 // indirect
github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910 // indirect
github.com/prometheus/common v0.0.0-20181120120127-aeab699e26f4 // indirect
github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d // indirect
golang.org/x/crypto v0.0.0-20181112202954-3d3f9f413869 // indirect
golang.org/x/net v0.0.0-20181114220301-adae6a3d119a // indirect
golang.org/x/oauth2 v0.0.0-20181120190819-8f65e3013eba // indirect
golang.org/x/sys v0.0.0-20181121002834-0cf1ed9e522b // indirect
golang.org/x/text v0.3.0 // indirect
golang.org/x/time v0.0.0-20181108054448-85acf8d2951c // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/yaml.v2 v2.2.1 // indirect
k8s.io/api v0.0.0-20181121071145-b7bd5f2d334c
k8s.io/apimachinery v0.0.0-20181121071008-d4f83ca2e260
k8s.io/client-go v9.0.0+incompatible
k8s.io/klog v0.1.0 // indirect
k8s.io/kube-openapi v0.0.0-20181114233023-0317810137be // indirect
k8s.io/kubernetes v1.12.2 // indirect
sigs.k8s.io/yaml v1.1.0 // indirect
k8s.io/api v0.19.1
k8s.io/apimachinery v0.19.1
k8s.io/client-go v0.19.1
k8s.io/klog/v2 v2.3.0
sigs.k8s.io/sig-storage-lib-external-provisioner/v7 v7.0.1
)

go 1.15
go 1.16
Loading

0 comments on commit c890bee

Please sign in to comment.