skip to Main Content

Gitlab CI with Ansible – Debian

I am creating a pipeline which is automatically triggered when I push my code on gitlab.com. The project is about the provisioning of a machine. Here my .gitlab-ci.yml file ansible_build: image: debian:10 script: - apt-get update -q -y - apt-get…

VIEW QUESTION

Installing kubectl – CentOS

Iam getting a message as No package kubectl available while installing kubectl I have followed the documentation mentioned here for CentOS VERSION="7 (Core)" , Linux kernel version = 3.10.0-862.14.4.el7.x8 cat <<EOF > /etc/yum.repos.d/kubernetes.repo [kubernetes] name=Kubernetes baseurl=https://packages.cloud.google.com/yum/repos/kubernetes-el7-x86_64 enabled=1 gpgcheck=1 repo_gpgcheck=1 gpgkey=https://packages.cloud.google.com/yum/doc/yum-key.gpg…

VIEW QUESTION
Back To Top
Search