Skip to content
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

Updates container image versions for external-dns and kubeip deployments #851

Merged
merged 5 commits into from
Nov 12, 2021
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
2 changes: 1 addition & 1 deletion k8s/prometheus-federation/deployments/external-dns.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ spec:
serviceAccountName: external-dns
containers:
- name: external-dns
image: registry.opensource.zalan.do/teapot/external-dns:v0.5.17
image: k8s.gcr.io/external-dns/external-dns:v0.10.1
# domain-filter is the zone we want to manage. txt-owner-id is an
# arbitrary identifier used to track who created each entry (scoped
# here to the cluster, in case we end up using more than one
Expand Down
6 changes: 4 additions & 2 deletions k8s/prometheus-federation/deployments/kubeip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@ apiVersion: apps/v1
kind: Deployment
metadata:
name: kubeip
namespace: default
namespace: kube-system
spec:
replicas: 1
selector:
matchLabels:
app: kubeip
strategy:
type: Recreate
template:
metadata:
labels:
Expand All @@ -16,7 +18,7 @@ spec:
priorityClassName: system-cluster-critical
containers:
- name: "kubeip"
image: doitintl/kubeip:issue-34
image: doitintl/kubeip:v1.0.0
imagePullPolicy: Always
volumeMounts:
- name: google-cloud-key
Expand Down
2 changes: 2 additions & 0 deletions k8s/prometheus-federation/roles/rbac-kubeip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@ apiVersion: v1
kind: ServiceAccount
metadata:
name: kubeip
namespace: kube-system
---
# Allow kubeIP to keep an eye on nodes and pods
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: kubeip
namespace: kube-system
rules:
- apiGroups: [""]
resources: ["nodes"]
Expand Down