You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had to tweak the cluster.tf file because terraform 0.12 doesn't like your use of labels { ... }, it needs to be labels = { ... } I'm guessing.
I had to get rid of your definition of host in the docker provider
It hits a file conflict during install:
Checking for file conflicts: [..........error]
Detected 2 file conflicts:
File /usr/bin/kubelet
from install of
kubernetes-kubelet-1.17.0-lp151.2.1.x86_64 (kubic)
conflicts with file from install of
kubernetes-kubelet-common-1.17.4-2.1.x86_64 (extra-repo0)
File /usr/share/man/man1/kubelet.1.gz
from install of
kubernetes-kubelet-1.17.0-lp151.2.1.x86_64 (kubic)
conflicts with file from install of
kubernetes-kubelet-common-1.17.4-2.1.x86_64 (extra-repo0)
File conflicts happen when two packages attempt to install files with the same name but different contents. If you continue, conflicting files will be replaced losing the previous content.
Continue? [yes/no] (no): no
Problem occurred during or after installation or removal of packages:
Installation has been aborted as directed.
History:
- ABORT request:
Please see the above error message for a hint.
The command '/bin/sh -c zypper ar --refresh --enable --no-gpgcheck https://download.opensuse.org/tumbleweed/repo/oss extra-repo0 && zypper ar --refresh --enable --no-gpgcheck https://download.opensuse.org/repositories/devel:/kubic/openSUSE_Leap_15.1 kubic && zypper ref -r extra-repo0 && zypper ref -r kubic && zypper in -y --no-recommends ca-certificates curl gpg2 lsb-release systemd systemd-sysvinit libsystemd0 conntrack-tools iptables iproute2 ethtool socat util-linux ebtables udev kmod bash rsync docker openssh kubernetes-kubeadm kubernetes-kubelet kubernetes-client kmod cni cni-plugins && zypper clean -a && rm -f /lib/systemd/system/multi-user.target.wants/* && rm -f /etc/systemd/system/*.wants/* && rm -f /lib/systemd/system/local-fs.target.wants/* && rm -f /lib/systemd/system/sockets.target.wants/*udev* && rm -f /lib/systemd/system/sockets.target.wants/*initctl* && rm -f /lib/systemd/system/basic.target.wants/* && echo "ReadKMsg=no" >> /etc/systemd/journald.conf && systemctl enable docker.service && systemctl enable sshd.service' returned a non-zero code: 8
make: *** [image] Error 8
The text was updated successfully, but these errors were encountered:
I had to tweak the
cluster.tf
file because terraform 0.12 doesn't like your use oflabels { ... }
, it needs to belabels = { ... }
I'm guessing.I had to get rid of your definition of
host
in thedocker
providerIt hits a file conflict during install:
The text was updated successfully, but these errors were encountered: