We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 754296b + 6c20b0b commit f1b073fCopy full SHA for f1b073f
Dockerfile
@@ -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"]
cmd/objectstorage-sidecar/app/objectstorage-sidecar.go
@@ -24,7 +24,7 @@ const (
24
defaultDriverAddress = "tcp://0.0.0.0:9000"
25
)
26
27
-// SidecarOptions defines the options
+// SidecarOptions defines the options for running the sidecar
28
type SidecarOptions struct {
29
driverAddress string
30
}
0 commit comments