Skip to content

Commit

Permalink
Kubernetes v1.19 upgrade (#2696)
Browse files Browse the repository at this point in the history
  • Loading branch information
atsikham authored Oct 22, 2021
1 parent 839a557 commit 7ad0c14
Show file tree
Hide file tree
Showing 36 changed files with 1,673 additions and 831 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ARG USER_UID=1000
ARG USER_GID=$USER_UID

ARG HELM_VERSION=3.3.1
ARG KUBECTL_VERSION=1.18.8
ARG KUBECTL_VERSION=1.19.15
ARG ISTIOCTL_VERSION=1.8.1

RUN : INSTALL APT REQUIREMENTS \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ARG USER_UID=1000
ARG USER_GID=$USER_UID

ARG HELM_VERSION=3.3.1
ARG KUBECTL_VERSION=1.18.8
ARG KUBECTL_VERSION=1.19.15
ARG ISTIOCTL_VERSION=1.8.1

ENV EPICLI_DOCKER_SHARED_DIR=/shared
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{{- if .Values.ingress.enabled -}}
{{- $fullName := include "epi-dummy.fullname" . -}}
{{- $svcPort := .Values.service.port -}}
apiVersion: networking.k8s.io/v1beta1
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: {{ $fullName }}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
---
- name: Update in-cluster configuration
shell: |
command: |
kubeadm init phase upload-config kubeadm \
--config /etc/kubeadm/kubeadm-config.yml
args:
executable: /bin/bash
register: upload_config
until: upload_config is succeeded
retries: 30
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Based on https://github.com/kubernetes/kubernetes/blob/v1.18.6/cluster/addons/dns/coredns/coredns.yaml.in
# Based on https://github.com/kubernetes/kubernetes/blob/v1.19.15/cluster/addons/dns/coredns/coredns.yaml.in
# Hosts plugin added

# Note: /etc/hosts in pods is managed by kubelet thus we mount it under different path,
Expand Down Expand Up @@ -28,7 +28,9 @@ data:
ttl 30
}
prometheus :9153
forward . /etc/resolv.conf
forward . /etc/resolv.conf {
max_concurrent 1000
}
cache 30
loop
reload
Expand Down
Loading

0 comments on commit 7ad0c14

Please sign in to comment.