123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- ---
- openshift_node_active_nodes: []
- openshift_node_machineconfigpool: 'worker'
- openshift_node_tls_verify: false
- openshift_node_kubeconfig_path: "{{ openshift_kubeconfig_path | default('~/.kube/config') | expanduser | realpath }}"
- openshift_node_kubeconfig: "{{ lookup('file', openshift_node_kubeconfig_path) | from_yaml }}"
- openshift_node_bootstrap_port: 22623
- openshift_node_bootstrap_server: "{{ openshift_node_kubeconfig.clusters.0.cluster.server.split(':')[0:-1] | join(':') | regex_replace('://api', '://api-int') }}:{{ openshift_node_bootstrap_port }}"
- openshift_node_bootstrap_endpoint: "{{ openshift_node_bootstrap_server }}/config/{{ openshift_node_machineconfigpool }}"
- openshift_node_packages:
- - cri-o-{{ l_kubernetes_version }}.*
- - openshift-clients-{{ l_cluster_version }}.*
- - openshift-hyperkube-{{ l_cluster_version }}.*
- - podman
- openshift_node_support_packages: "{{ openshift_node_support_packages_base + openshift_node_support_packages_by_arch[ansible_architecture] }}"
- openshift_node_support_packages_base:
- # Packages from redhat-coreos.git manifest-base.yaml
- - kernel
- - systemd
- #- systemd-journal-gateway
- #- rpm-ostree
- #- nss-altfiles
- - selinux-policy-targeted
- - setools-console
- #- ignition
- #- ignition-dracut
- - dracut-network
- - passwd
- #- grub2
- #- grub2-efi
- #- ostree-grub2
- #- efibootmgr
- #- shim
- - openssh-server
- - openssh-clients
- - skopeo
- - runc
- - containernetworking-plugins
- #- cri-o
- - cri-tools
- #- toolbox
- - nfs-utils
- - NetworkManager
- - dnsmasq
- - lvm2
- - iscsi-initiator-utils
- - sg3_utils
- - device-mapper-multipath
- - xfsprogs
- - e2fsprogs
- - mdadm
- - cryptsetup
- - chrony
- #- coreos-metadata
- - logrotate
- - sssd
- - shadow-utils
- - sudo
- - coreutils
- - less
- - tar
- - xz
- - gzip
- - bzip2
- - rsync
- - tmux
- - nmap-ncat
- - net-tools
- - bind-utils
- - strace
- - bash-completion
- - vim-minimal
- - nano
- #- openshift-hyperkube
- #- openshift-clients
- #- pivot
- #- subscription-manager-rhsm-certificates
- #
- # Packages from redhat-coreos.git maipo/manifest.yaml
- #- redhat-release-coreos
- - authconfig
- - policycoreutils-python
- - iptables-services
- - bridge-utils
- - container-storage-setup
- #- cloud-utils-growpart
- - ceph-common
- openshift_node_support_packages_by_arch:
- ppc64le:
- - irqbalance
- s390x:
- - s390utils-base
- x86_64:
- - microcode_ctl
- - irqbalance
- - biosdevname
- # GlusterFS
- # Temporaly only for x86_64 as were not shipping it for other arches atm
- # Tracked in https://bugzilla.redhat.com/show_bug.cgi?id=1715175
- - glusterfs-fuse
|