Skip to content
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
3 changes: 3 additions & 0 deletions .github/workflows/functional-test.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
name: functional-test
permissions:
contents: read
pull-requests: write

on:
workflow_dispatch:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
name: push
permissions:
contents: read
pull-requests: write

on:
push:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
name: unit-test
permissions:
contents: read
pull-requests: write

on:
push:
Expand Down
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,9 @@ FROM gcr.io/distroless/static:latest
WORKDIR /
COPY --from=builder /workspace/manager .
ENTRYPOINT ["/manager"]
LABEL org.opencontainers.image.source https://github.com/keikoproj/instance-manager
LABEL org.opencontainers.image.version ${VERSION}
LABEL org.opencontainers.image.created ${CREATED}
LABEL org.opencontainers.image.license Apache-2.0
LABEL org.opencontainers.image.url https://github.com/keikoproj/instance-manager
LABEL org.opencontainers.image.description "A Kubernetes controller for managing EC2 and EKS nodes"
Loading