Skip to content

Commit 3f91bb6

Browse files
committed
ingress group implementation
1 parent 7770055 commit 3f91bb6

File tree

113 files changed

+8164
-3581
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

113 files changed

+8164
-3581
lines changed

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,8 @@ bin
1414
*.out
1515

1616
# Kubernetes Generated files - skip generated files, except for vendored files
17-
pkg/**/zz_generated.*
1817

19-
vendor/
18+
!vendor/**/zz_generated.*
2019

2120
# editor and IDE paraphernalia
2221
.idea

Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,11 @@ COPY vendor/ vendor/
1010
# Build
1111
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -o manager sigs.k8s.io/aws-alb-ingress-controller/cmd/manager
1212

13+
1314
# Copy the controller-manager into a thin image
14-
FROM ubuntu:latest
15+
FROM amazonlinux:2 as amazonlinux
16+
FROM scratch
1517
WORKDIR /
1618
COPY --from=builder /go/src/sigs.k8s.io/aws-alb-ingress-controller/manager .
19+
COPY --from=amazonlinux /etc/ssl/certs/ca-bundle.crt /etc/ssl/certs/
1720
ENTRYPOINT ["/manager"]

0 commit comments

Comments
 (0)