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

K8s improvements #2918

Merged
merged 11 commits into from
Feb 4, 2022
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,28 @@
- "{{ pki.location }}/apiserver.crt"
- "{{ pki.location }}/apiserver.key"

- name: Delete apiserver.{crt,key}
file:
path: "{{ item }}"
state: absent
loop:
- "{{ pki.location }}/apiserver.crt"
- "{{ pki.location }}/apiserver.key"
- name: Generate new apiserver certificates with kubeadm
block:
- name: Delete apiserver.{crt,key}
file:
path: "{{ item }}"
state: absent
loop:
- "{{ pki.location }}/apiserver.crt"
- "{{ pki.location }}/apiserver.key"

- name: Render new certificates apiserver.{crt,key}
shell: |
kubeadm init phase certs apiserver \
--config /etc/kubeadm/kubeadm-config.yml
args:
executable: /bin/bash
creates: "{{ pki.location }}/apiserver.key"
- name: Render new certificates apiserver.{crt,key}
command: |-
kubeadm init phase certs apiserver \
--config /etc/kubeadm/kubeadm-config.yml
args:
creates: "{{ pki.location }}/apiserver.key"
rescue:
atsikham marked this conversation as resolved.
Show resolved Hide resolved
- name: Restore apiserver.{crt,key}
copy:
dest: "{{ item }}"
src: "{{ item }}.OLD"
remote_src: true
loop:
- "{{ pki.location }}/apiserver.crt"
- "{{ pki.location }}/apiserver.key"
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
---
- name: Generate certificates block
- name: Set pki_backup_dir fact
set_fact:
pki_backup_dir: "{{ pki.location | regex_replace('\\/$', '') }}-backup-{{ ansible_date_time.iso8601_basic_short }}"

- name: Save current certificates
atsikham marked this conversation as resolved.
Show resolved Hide resolved
synchronize:
src: "{{ pki.location }}/"
dest: "{{ pki_backup_dir }}"
delegate_to: "{{ inventory_hostname }}"

- name: Generate certificates
vars:
# https://kubernetes.io/docs/setup/best-practices/certificates/#all-certificates
_certificates_opt_mapping:
Expand Down Expand Up @@ -62,13 +72,6 @@
certificates_renewal_list: "{{ _certificates_opt_mapping | map(attribute='name') }}"
when: certificates_renewal_list is not defined

- name: Save old certificates
synchronize:
src: "{{ pki.location }}/"
dest: >-
{{ pki.location | regex_replace('\\/$', '') }}-backup-{{ ansible_date_time.iso8601_basic_short }}
delegate_to: "{{ inventory_hostname }}"

- name: Ensure necessary directories exist
file:
path: "{{ item }}"
Expand Down Expand Up @@ -195,20 +198,28 @@
- 'csr'
- 'ext'

- name: Restart systemd services
when:
- services_to_restart is defined
- services_to_restart | difference(['docker', 'kubelet']) | length == 0
block:
- name: Restart services
systemd:
name: "{{ item }}"
state: restarted
loop: "{{ services_to_restart }}"

- name: Wait until cluster is available
command: kubectl cluster-info
retries: 50
delay: 1
register: result
until: result is succeeded and "running" in result.stdout
rescue:
atsikham marked this conversation as resolved.
Show resolved Hide resolved
- name: Restore certificates
synchronize:
src: "{{ pki_backup_dir }}/"
dest: "{{ pki.location | regex_replace('\\/$', '') }}"
delegate_to: "{{ inventory_hostname }}"


- name: Restart systemd services
when:
- services_to_restart is defined
- services_to_restart | difference(['docker', 'kubelet']) | length == 0
block:
- name: Restart services
systemd:
name: "{{ item }}"
state: restarted
loop: "{{ services_to_restart }}"

- name: Wait until cluster is available
command: kubectl cluster-info
retries: 60
delay: 1
register: result
until: result is succeeded and "running" in result.stdout
88 changes: 47 additions & 41 deletions ansible/playbooks/roles/kubernetes_master/tasks/main.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
---
- name: Set is_first_deployment fact
set_fact:
is_first_deployment: false

- when: use_ha_control_plane
block:
- name: Configure internal load-balancer (HAProxy)
Expand All @@ -28,63 +24,73 @@
- import_tasks: copy-kubernetes-pki.yml
- import_tasks: master-join.yml

- name: Collect current apiserver certificate 'not_after' date by openssl
command: openssl x509 -enddate -noout -in apiserver.crt
- name: Collect subject alternative names of apiserver certificate
shell: |-
set -o pipefail && \
openssl x509 -in /etc/kubernetes/pki/apiserver.crt -text -noout \
atsikham marked this conversation as resolved.
Show resolved Hide resolved
| grep DNS:
args:
chdir: "{{ pki.location }}"
register: apiserver_certificate_info
executable: /bin/bash
changed_when: false
register: apiserver_cert

- name: Check presence of each control plane address in SANs list
set_fact:
san_search_results: "{{ san_search_results | default([]) + [apiserver_cert.stdout is search(item)] }}"
loop: >-
{{ (groups['kubernetes_master'] | map('extract', hostvars, ['ansible_default_ipv4', 'address']) | list)
+ (groups['kubernetes_master'] | map('extract', hostvars, ['ansible_host']) | list) }}

- name: Regenerate apiserver certificates
when: kubernetes_common.automation_designated_master != inventory_hostname or not is_first_deployment
# It's almost always necessary to regenerate apiserver certificates for designated and non-designated masters
# because of a few points:
# a. Update certificates for old clusters have to be supported
# b. Execution order is not defined, so when cluster is promoted to HA,
# non-designated masters may join cluster before designated master's certificate update
when: "not (san_search_results is all)"
block:
- name: Collect current apiserver certificate 'not_after' date by openssl
command: openssl x509 -enddate -noout -in apiserver.crt
args:
chdir: "{{ pki.location }}"
register: apiserver_certificate_info
changed_when: false

- name: Extend kubeadm config
vars:
update:
apiServer:
certSANs: >-
{{ (groups['kubernetes_master'] | map('extract', hostvars, ['ansible_default_ipv4', 'address']) | list)
+ (groups['kubernetes_master'] | map('extract', hostvars, ['ansible_host']) | list)
+ [ 'localhost', '127.0.0.1' ] | unique }}
+ [ '127.0.0.1' ] | unique }}
include_role:
name: kubernetes_common
tasks_from: extend-kubeadm-config

- name: Backup and generate apiserver certificates with latest kubeadm config
- name: Generate apiserver certificates with latest kubeadm config
include_tasks: apiserver-certificates.yml

# kubeadm certs renewal uses the existing certificates as the authoritative source for attributes (Common Name, Organization, SAN, etc.)
# instead of the kubeadm-config ConfigMap, so it's not possible to combine this step with previous ones
# See https://kubernetes.io/docs/tasks/administer-cluster/kubeadm/kubeadm-certs/#manual-certificate-renewal
- name: Update apiserver certificate expiration date
when: not (specification.advanced.certificates.renew | bool)
block:
- name: Regenerate apiserver certificate with previous expiration value
vars:
certificates_renewal_list:
- apiserver
valid_days: "{{ apiserver_certificate_info.stdout | openssl_date2days }}"
include_tasks: generate-certificates.yml
- name: Update apiserver certificate expiration date
when: not (specification.advanced.certificates.renew | bool)
block:
- name: Regenerate apiserver certificate with previous expiration value
vars:
certificates_renewal_list:
- apiserver
valid_days: "{{ apiserver_certificate_info.stdout | openssl_date2days }}"
include_tasks: generate-certificates.yml

- name: Restart apiserver
shell: |
docker ps \
--filter 'name=kube-apiserver_kube-apiserver' \
--format '{{ "{{.ID}}" }}' \
| xargs --no-run-if-empty docker kill
args:
executable: /bin/bash
- name: Restart apiserver
shell: |-
set -o pipefail && \
docker ps \
--filter 'name=kube-apiserver_kube-apiserver' \
--format '{{ "{{.ID}}" }}' \
| xargs --no-run-if-empty docker kill
args:
executable: /bin/bash

- name: Update in-cluster configuration
when: kubernetes_common.automation_designated_master == inventory_hostname
include_role:
name: kubernetes_common
tasks_from: update-in-cluster-config
- name: Update in-cluster configuration
when: kubernetes_common.automation_designated_master == inventory_hostname
include_role:
name: kubernetes_common
tasks_from: update-in-cluster-config

- name: Regenerate all certificates
when: specification.advanced.certificates.renew | bool
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,6 @@

- when: not stat_kube_apiserver_yaml.stat.exists
block:
- name: Set is_first_deployment fact
set_fact:
is_first_deployment: true

- name: Ensure /etc/kubeadm/ directory exists
file:
path: /etc/kubeadm/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ controlPlaneEndpoint: "localhost:3446"
apiServer:
timeoutForControlPlane: 4m0s
certSANs:
{% set ip_address_list = ['127.0.0.1', 'localhost'] %}
{% set address_list = ['127.0.0.1'] %}
{% for host in groups['kubernetes_master'] %}
{% set _ = ip_address_list.extend([ hostvars[host]['ansible_default_ipv4']['address'], hostvars[host]['ansible_host'] ]) %}
{% set _ = address_list.extend([ hostvars[host]['ansible_default_ipv4']['address'], hostvars[host]['ansible_host'] ]) %}
{% endfor %}
{% for ip in ip_address_list|unique %}
- {{ ip }}
{% for address in address_list|unique %}
- {{ address }}
{% endfor %}
extraArgs: # https://kubernetes.io/docs/reference/command-line-tools-reference/kube-apiserver/
{% if specification.advanced.etcd_args.encrypted | bool %}
Expand Down
8 changes: 0 additions & 8 deletions ansible/playbooks/roles/kubernetes_node/tasks/node-join.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,6 @@

- <<: *soft-join

rescue:
- name: Join to cluster with ignores
command: |-
kubeadm join \
--config /etc/kubeadm/kubeadm-join-node.yml \
--ignore-preflight-errors all
register: kubeadm_join_result

atsikham marked this conversation as resolved.
Show resolved Hide resolved
always:
- name: Display kubeadm join stderr if any
debug:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,12 @@
register: command_kubeadm_configmap
changed_when: false

# The following procedure ensures that etcd encryption is always enabled during subsequent kubeadm executions
# Starting from K8s v1.21 support for DenyEscalatingExec admission plugin is removed,
# but it was specified in Epiphany's default values
# The following procedure ensures that
atsikham marked this conversation as resolved.
Show resolved Hide resolved
# - etcd encryption is always enabled during subsequent kubeadm executions
# - DenyEscalatingExec admission plugin is not used as unsupported (it was specified in Epiphany's default values before v1.3)
# - apiserver audit logging is enabled
# - apiserver certSANs are configured the same way as for apply (GitHub issue #1520)
- name: k8s/master | Patch kubeadm-config configmap (patch-kubeadm-apiserver.yml)
when: _kubeadm_api_server_extra_args['encryption-provider-config'] is undefined
or _cluster_config.apiServer['extraVolumes'] is undefined
or (version is version('1.21', '>=')
and version is version('1.22', '<')
and _kubeadm_api_server_extra_args['enable-admission-plugins'] is defined)
command: |
kubectl patch configmap kubeadm-config \
--namespace kube-system \
Expand Down Expand Up @@ -68,6 +65,14 @@
# Prepare the cluster config patch
_update1: |-
apiServer:
certSANs:
{% set address_list = ['127.0.0.1'] %}
{% for host in groups['kubernetes_master'] %}
{% set _ = address_list.extend([ hostvars[host]['ansible_default_ipv4']['address'], hostvars[host]['ansible_host'] ]) %}
{% endfor %}
{% for address in address_list|unique %}
- {{ address }}
{% endfor %}
extraArgs:
encryption-provider-config: {{ kubernetes_master_defaults.pki.location }}/etcd/etc-encryption.conf
{% if version is version('1.21', '>=') and version is version('1.22', '<') %}
Expand Down
6 changes: 6 additions & 0 deletions docs/changelogs/CHANGELOG-2.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,14 @@

### Fixed

- [#2669](https://github.com/epiphany-platform/epiphany/issues/2669) - Restarting the installation process can cause certificate problems if K8s was not fully configured

### Updated

- [#2828](https://github.com/epiphany-platform/epiphany/issues/2828) - K8s improvements
- Re-generate apiserver certificates only by purpose
- Do not ignore preflight errors in `kubeadm join`

### Removed

- [#2834](https://github.com/epiphany-platform/epiphany/issues/2834) - Removal of Hashicorp Vault component
Expand Down