Skip to content
This repository was archived by the owner on Dec 3, 2024. 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
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
FROM gcr.io/distroless/static:latest
LABEL maintainers="Kubernetes Authors"
LABEL description="Object Storage Sidecar"

COPY ./bin/objectstorage-sidecar objectstorage-sidecar
ENTRYPOINT ["/objectstorage-sidecar"]
2 changes: 1 addition & 1 deletion cmd/objectstorage-sidecar/app/objectstorage-sidecar.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const (
defaultDriverAddress = "tcp://0.0.0.0:9000"
)

// SidecarOptions defines the options
// SidecarOptions defines the options for running the sidecar
type SidecarOptions struct {
driverAddress string
}
Expand Down