Kenichi Omichi

Results 108 comments of Kenichi Omichi

On my local env of Ubuntu 18.04, ArgoCD deployment succeeds like ``` TASK [kubernetes-apps/argocd : Kubernetes Apps | Install yq] ******************* changed: [k8s-1] Monday 16 May 2022 22:47:54 +0000 (0:00:06.504)...

The problematic command was ``` /usr/local/bin/yq eval-all -i '.metadata.namespace="argocd"' /etc/kubernetes/argocd-install.yml ``` The command tried to replace `.metadata.namespace` with "argocd" and failed on /etc/kubernetes/argocd-install.yml. /etc/kubernetes/argocd-install.yml looks like ``` # This is...

https://gist.github.com/IvanPletnyov/89bdb6fd9e9fbb52b48cf6cb865eecfb#file-kubelet-L20 ``` misconfiguration: kubelet cgroup driver: \"cgroupfs\" is different from docker cgroup driver: \"systemd\"" ``` How about specifying cgroupfs for the docker cgroup driver like ``` docker_cgroup_driver: cgroupfs ``` ?

@IvanPletnyov Thanks for trying to do that. Can still you see the error(`misconfiguration: kubelet cgroup driver: \"cgroupfs\" is different from docker cgroup driver: \"systemd\"" `) on kubelet? Or does kubelet...

Thank you for providing the information. 10250/tcp should be used for kubelet. Please check which process is using the port with ``` $ sudo lsof -i ``` on your environment.

> As mentioned on the PR actual support means we have coverage for this distribution in CI. > > I'm also concerned about saying we support a rolling release distribution...

The systemd configuration is done with Kubespray, and Kubernetes processes should restart automatically after power on. Please provide the information based on the template as https://github.com/kubernetes-sigs/kubespray/blob/master/.github/ISSUE_TEMPLATE/bug-report.md to know what operating...

Hi @misupopo Could you explain the issue more? > The nvidia container runtime does not lookes like to be working. What is the actual error message you are facing? >...

I am not sure why you set ``` deploy_container_engine: false ``` here. https://github.com/kubernetes-sigs/kubespray/blob/master/docs/docker.md doesn't contain such option.

I see, you need to pre-install docker engine before operating Kubespray. Can you share an example why you need to pre-install the docker engine? Is it good for you if...