Skip to content

Commit c13c3a5

Browse files
Merge pull request #27 from dobsonj/rebase-v2.4.0
Bug 1993934: Update CSI sidecars
2 parents 1a96af9 + 64cf4c6 commit c13c3a5

550 files changed

Lines changed: 29377 additions & 15925 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.travis.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGELOG/CHANGELOG-2.3.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# Release notes for v2.3.0
2+
3+
[Documentation](https://kubernetes-csi.github.io/docs/)
4+
5+
# Changelog since v2.2.0
6+
7+
## Changes by Kind
8+
9+
### Uncategorized
10+
- Updated runtime (Go 1.16) and dependencies ([#107](https://github.com/kubernetes-csi/livenessprobe/pull/107), [@pohly](https://github.com/pohly))
11+
12+
## Dependencies
13+
14+
### Added
15+
_Nothing has changed._
16+
17+
### Changed
18+
- github.com/cncf/udpa/go: [efcf912 → 5459f2c](https://github.com/cncf/udpa/go/compare/efcf912...5459f2c)
19+
- github.com/container-storage-interface/spec: [v1.3.0 → v1.4.0](https://github.com/container-storage-interface/spec/compare/v1.3.0...v1.4.0)
20+
- github.com/envoyproxy/go-control-plane: [v0.9.7 → fd9021f](https://github.com/envoyproxy/go-control-plane/compare/v0.9.7...fd9021f)
21+
- github.com/go-logr/logr: [v0.3.0 → v0.4.0](https://github.com/go-logr/logr/compare/v0.3.0...v0.4.0)
22+
- github.com/golang/protobuf: [v1.4.3 → v1.5.1](https://github.com/golang/protobuf/compare/v1.4.3...v1.5.1)
23+
- github.com/google/go-cmp: [v0.5.2 → v0.5.5](https://github.com/google/go-cmp/compare/v0.5.2...v0.5.5)
24+
- github.com/kubernetes-csi/csi-lib-utils: [v0.9.0 → v0.9.1](https://github.com/kubernetes-csi/csi-lib-utils/compare/v0.9.0...v0.9.1)
25+
- github.com/prometheus/client_golang: [v1.8.0 → v1.9.0](https://github.com/prometheus/client_golang/compare/v1.8.0...v1.9.0)
26+
- github.com/prometheus/common: [v0.15.0 → v0.19.0](https://github.com/prometheus/common/compare/v0.15.0...v0.19.0)
27+
- github.com/prometheus/procfs: [v0.2.0 → v0.6.0](https://github.com/prometheus/procfs/compare/v0.2.0...v0.6.0)
28+
- golang.org/x/net: 986b41b → d523dce
29+
- golang.org/x/sync: cd5d95a → 09787c9
30+
- golang.org/x/sys: f9fddec → c4fcb01
31+
- golang.org/x/text: v0.3.4 → v0.3.5
32+
- google.golang.org/genproto: 8c77b98 → 75c7a85
33+
- google.golang.org/grpc: v1.34.0 → v1.36.0
34+
- google.golang.org/protobuf: v1.25.0 → v1.26.0
35+
- k8s.io/api: v0.20.0 → v0.20.4
36+
- k8s.io/apimachinery: v0.20.0 → v0.20.4
37+
- k8s.io/client-go: v0.20.0 → v0.20.4
38+
- k8s.io/component-base: v0.20.0 → v0.20.4
39+
- k8s.io/klog/v2: v2.4.0 → v2.8.0
40+
41+
### Removed
42+
_Nothing has changed._

CHANGELOG/CHANGELOG-2.4.md

Lines changed: 201 additions & 0 deletions
Large diffs are not rendered by default.

Dockerfile.Windows

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,28 @@
1-
ARG BASE_IMAGE=servercore
2-
ARG BASE_IMAGE_TAG=1809
1+
# Copyright 2021 The Kubernetes Authors.
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
# These arguments come from BUILD_PLATFORMS used in release-tools
16+
ARG ADDON_IMAGE=servercore:1809
17+
ARG BASE_IMAGE=nanoserver:1809
318
ARG REGISTRY=mcr.microsoft.com/windows
419

5-
FROM ${REGISTRY}/${BASE_IMAGE}:${BASE_IMAGE_TAG} as core
6-
FROM mcr.microsoft.com/windows/nanoserver:${BASE_IMAGE_TAG}
20+
FROM ${REGISTRY}/${ADDON_IMAGE} as addon
21+
FROM ${REGISTRY}/${BASE_IMAGE}
722
LABEL description="CSI Liveness Probe"
823

924
COPY ./bin/livenessprobe.exe /livenessprobe.exe
10-
COPY --from=core /Windows/System32/netapi32.dll /Windows/System32/netapi32.dll
25+
COPY --from=addon /Windows/System32/netapi32.dll /Windows/System32/netapi32.dll
26+
1127
USER ContainerAdministrator
1228
ENTRYPOINT ["/livenessprobe.exe"]

OWNERS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# See the OWNERS docs at https://go.k8s.io/owners
2+
13
approvers:
24
- openshift-storage-maintainers
35
component: "Storage"

OWNERS_ALIASES

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ aliases:
44
- tsmetana
55
- gnufied
66
- bertinatto
7-
- huffmanca
7+
- dobsonj

go.mod

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,12 @@
11
module github.com/kubernetes-csi/livenessprobe
22

3-
go 1.15
3+
go 1.16
44

55
require (
6-
github.com/container-storage-interface/spec v1.3.0
7-
github.com/go-logr/logr v0.3.0 // indirect
6+
github.com/container-storage-interface/spec v1.5.0
87
github.com/golang/mock v1.4.3
9-
github.com/kubernetes-csi/csi-lib-utils v0.9.0
8+
github.com/kubernetes-csi/csi-lib-utils v0.10.0
109
github.com/kubernetes-csi/csi-test/v4 v4.0.0-20200806214950-555d70a11a8b
11-
github.com/prometheus/client_golang v1.8.0 // indirect
12-
github.com/prometheus/common v0.15.0 // indirect
13-
golang.org/x/net v0.0.0-20201216054612-986b41b23924 // indirect
14-
golang.org/x/sys v0.0.0-20201214210602-f9fddec55a1e // indirect
15-
google.golang.org/genproto v0.0.0-20201214200347-8c77b98c765d // indirect
16-
google.golang.org/grpc v1.34.0
17-
k8s.io/component-base v0.20.0 // indirect
18-
k8s.io/klog/v2 v2.4.0
10+
google.golang.org/grpc v1.38.0
11+
k8s.io/klog/v2 v2.9.0
1912
)

0 commit comments

Comments
 (0)