Remove unused repo gpgkey for yum repo

microdnf is having issues with the repo gpgkey that was previously used
however the repogpgcheck was removed in
https://github.com/kubernetes/website/pull/34546 so the gpgkey for the
repo can be removed as well.

this is to implement #36111
pull/36113/head
Sam Stoelinga 2022-08-19 09:28:26 -07:00
parent eb0ec74f86
commit 421109c462
2 changed files with 2 additions and 2 deletions

View File

@ -182,7 +182,7 @@ name=Kubernetes
baseurl=https://packages.cloud.google.com/yum/repos/kubernetes-el7-\$basearch
enabled=1
gpgcheck=1
gpgkey=https://packages.cloud.google.com/yum/doc/yum-key.gpg https://packages.cloud.google.com/yum/doc/rpm-package-key.gpg
gpgkey=https://packages.cloud.google.com/yum/doc/rpm-package-key.gpg
exclude=kubelet kubeadm kubectl
EOF

View File

@ -146,7 +146,7 @@ name=Kubernetes
baseurl=https://packages.cloud.google.com/yum/repos/kubernetes-el7-\$basearch
enabled=1
gpgcheck=1
gpgkey=https://packages.cloud.google.com/yum/doc/yum-key.gpg https://packages.cloud.google.com/yum/doc/rpm-package-key.gpg
gpgkey=https://packages.cloud.google.com/yum/doc/rpm-package-key.gpg
EOF
sudo yum install -y kubectl
```