Skip to content

Commit 4a43871

Browse files
fix: Case-align FROM and AS in Dockerfile (#699)
Co-authored-by: Michael Beemer <beeme1mr@users.noreply.github.com>
1 parent b5ad594 commit 4a43871

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -a -o manager m
2525

2626
# Use distroless as minimal base image to package the manager binary
2727
# Refer to https://github.com/GoogleContainerTools/distroless for more details
28-
FROM gcr.io/distroless/static:nonroot as production
28+
FROM gcr.io/distroless/static:nonroot AS production
2929
WORKDIR /
3030
COPY --from=builder /workspace/manager .
3131
USER 65532:65532

chart/open-feature-operator/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ The command removes all the Kubernetes components associated with the chart and
169169
| `controllerManager.kubeRbacProxy.resources.requests.cpu` | Sets cpu resource requests for kube-rbac-proxy. | `5m` |
170170
| `controllerManager.kubeRbacProxy.resources.requests.memory` | Sets memory resource requests for kube-rbac-proxy. | `64Mi` |
171171
| `controllerManager.manager.image.repository` | Sets the image for the operator. | `ghcr.io/open-feature/open-feature-operator` |
172-
| `controllerManager.manager.image.tag` | Sets the version tag for the operator. | `v0.7.0` |
172+
| `controllerManager.manager.image.tag` | Sets the version tag for the operator. | `v0.7.1` |
173173
| `controllerManager.manager.resources.limits.cpu` | Sets cpu resource limits for operator. | `500m` |
174174
| `controllerManager.manager.resources.limits.memory` | Sets memory resource limits for operator. | `128Mi` |
175175
| `controllerManager.manager.resources.requests.cpu` | Sets cpu resource requests for operator. | `10m` |

0 commit comments

Comments
 (0)