Skip to content

Commit 5a76e26

Browse files
authored
Merge pull request kubernetes-retired#22 from rrati/dockerfile
Added Dockerfile for sidecar
2 parents 044c5bd + d10a68f commit 5a76e26

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
FROM gcr.io/distroless/static:latest
2+
LABEL maintainers="Kubernetes Authors"
3+
LABEL description="Object Storage Sidecar"
4+
5+
COPY ./bin/objectstorage-sidecar objectstorage-sidecar
6+
ENTRYPOINT ["/objectstorage-sidecar"]

Diff for: container-object-storage-interface-provisioner-sidecar/cmd/objectstorage-sidecar/app/objectstorage-sidecar.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const (
2424
defaultDriverAddress = "tcp://0.0.0.0:9000"
2525
)
2626

27-
// SidecarOptions defines the options
27+
// SidecarOptions defines the options for running the sidecar
2828
type SidecarOptions struct {
2929
driverAddress string
3030
}

0 commit comments

Comments
 (0)