aboutsummaryrefslogtreecommitdiffstats
path: root/kud/deployment_infra/playbooks/configure-kata-webhook.yml
blob: cb11bdf76ca3f9fcf72f8dbe2674bc413ab37fdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
---
#  Copyright 2021 Intel Corporation, Inc
#
#  Licensed under the Apache License, Version 2.0 (the "License");
#  you may not use this file except in compliance with the License.
#  You may obtain a copy of the License at
#
#       http://www.apache.org/licenses/LICENSE-2.0
#
#  Unless required by applicable law or agreed to in writing, software
#  distributed under the License is distributed on an "AS IS" BASIS,
#  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#  See the License for the specific language governing permissions and
#  limitations under the License.
#
- hosts: localhost
  become: yes
  pre_tasks:
    - name: Load kud variables
      include_vars:
        file: "{{ playbook_dir }}/kud-vars.yml"
  tasks:
    - name: Create Kata webook folder
      file:
        state: directory
        path: "{{ kata_webhook_dest }}/deploy"
      ignore_errors: yes

    - name: Download Kata webhook script
      get_url:
        url: "{{ kata_webhook_script_url }}"
        dest: "{{ kata_webhook_dest }}"

    - name: Download Kata webhook registration yaml
      get_url:
        url: "{{ kata_webhook_registration_url }}"
        dest: "{{ kata_webhook_dest }}/deploy"

    - name: Download Kata webhook deployment yaml
      get_url:
        url: "{{ kata_webhook_deployment_url }}"
        dest: "{{ kata_webhook_dest }}/deploy"

    - name: Changing perm of create-certs.sh, adding "+x"
      shell: "chmod +x create-certs.sh"
      args:
        chdir: "{{ kata_webhook_dest }}"
        warn: False

    - name: Modify webhook for {{ kata_webhook_runtimeclass }} Runtimeclass
      shell: "sed 's/value: kata/value: {{ kata_webhook_runtimeclass }}/g' webhook.yaml | tee webhook-{{ kata_webhook_runtimeclass }}.yaml"
      args:
        chdir: "{{ kata_webhook_dest }}/deploy"
        warn: False

    - name: Create Kata webhook secret
      command: "{{ kata_webhook_dest }}/create-certs.sh"
      args:
        chdir: "{{ kata_webhook_dest }}"
        warn: False

    - name: Apply Kata webhook certs
      command: "/usr/local/bin/kubectl apply -f {{ kata_webhook_dest }}/deploy/webhook-certs.yaml"

    - name: Apply Kata mutating webhook configuration
      command: "/usr/local/bin/kubectl apply -f {{ kata_webhook_dest }}/deploy/webhook-registration.yaml"

    - name: Apply Kata webhook
      command: "/usr/local/bin/kubectl apply -f {{ kata_webhook_dest }}/deploy/webhook-{{ kata_webhook_runtimeclass }}.yaml"