Skip to content

Update kustomize #827

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 24, 2019
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
8 changes: 4 additions & 4 deletions docs/examples/alb-ingress-controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: alb-ingress-controller
app.kubernetes.io/name: alb-ingress-controller
name: alb-ingress-controller
# Namespace the ALB Ingress Controller should run in. Does not impact which
# namespaces it's able to resolve ingress resource for. For limiting ingress
Expand All @@ -14,11 +14,11 @@ metadata:
spec:
selector:
matchLabels:
app: alb-ingress-controller
app.kubernetes.io/name: alb-ingress-controller
template:
metadata:
labels:
app: alb-ingress-controller
app.kubernetes.io/name: alb-ingress-controller
spec:
containers:
- name: alb-ingress-controller
Expand Down Expand Up @@ -66,5 +66,5 @@ spec:
#- name: AWS_SECRET_ACCESS_KEY
# value: SECRETVALUE
# Repository location of the ALB Ingress Controller.
image: docker.io/amazon/aws-alb-ingress-controller:v1.1.0
image: docker.io/amazon/aws-alb-ingress-controller:v1.1.1
serviceAccountName: alb-ingress-controller
6 changes: 5 additions & 1 deletion docs/examples/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
commonLabels:
app: alb-ingress-controller
app.kubernetes.io/name: alb-ingress-controller

imageTags:
- name: docker.io/amazon/aws-alb-ingress-controller
newTag: v1.1.1

namespace: kube-system

Expand Down
6 changes: 3 additions & 3 deletions docs/examples/rbac-role.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
labels:
app: alb-ingress-controller
app.kubernetes.io/name: alb-ingress-controller
name: alb-ingress-controller
rules:
- apiGroups:
Expand Down Expand Up @@ -41,7 +41,7 @@ apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
labels:
app: alb-ingress-controller
app.kubernetes.io/name: alb-ingress-controller
name: alb-ingress-controller
roleRef:
apiGroup: rbac.authorization.k8s.io
Expand All @@ -56,7 +56,7 @@ apiVersion: v1
kind: ServiceAccount
metadata:
labels:
app: alb-ingress-controller
app.kubernetes.io/name: alb-ingress-controller
name: alb-ingress-controller
namespace: kube-system
...