$ kubectl version
Client Version: version.Info{Major:"1", Minor:"13+", GitVersion:"v1.13.0-alpha.0.1223+7bfd0d358cbe9e", GitCommit:"7bfd0d358cbe9eb1e8dc81c909ae9d03705ec438", GitTreeState:"clean", BuildDate:"2018-09-11T16:26:36Z", GoVersion:"go1.10.3", Compiler:"gc", Platform:"linux/amd64"}
Server Version: version.Info{Major:"1", Minor:"13+", GitVersion:"v1.13.0-alpha.0.1223+7bfd0d358cbe9e", GitCommit:"7bfd0d358cbe9eb1e8dc81c909ae9d03705ec438", GitTreeState:"clean", BuildDate:"2018-09-11T16:23:05Z", GoVersion:"go1.10.3", Compiler:"gc", Platform:"linux/amd64"}
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Logs begin at Wed 2018-09-12 07:31:38 UTC, end at Wed 2018-09-12 14:55:55 UTC. -- | |
Sep 12 07:32:48 pd17855-worker-1.pd17855.vsphere.local systemd[1]: Started Kubernetes kubelet. | |
-- Subject: Unit kubelet.service has finished start-up | |
-- Defined-By: systemd | |
-- Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel | |
-- | |
-- Unit kubelet.service has finished starting up. | |
-- | |
-- The start-up result is RESULT. | |
Sep 12 07:32:48 pd17855-worker-1.pd17855.vsphere.local kubelet[1458]: Flag --non-masquerade-cidr has been deprecated, will be removed in a future version |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TF_VAR_run_conformance_tests=false | |
AWS_LOAD_BALANCER=false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TF_VAR_run_conformance_tests=false | |
AWS_LOAD_BALANCER=false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TF_VAR_run_conformance_tests=false | |
AWS_LOAD_BALANCER=false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TF_VAR_run_conformance_tests=false | |
AWS_LOAD_BALANCER=false |
/var/lib/kubernetes/e2e/platforms/linux/amd64/e2e.test \
-ginkgo.focus "should test kubelet managed /etc/hosts file \\[Conformance\\]" \
-ginkgo.skip "Alpha|Kubectl|\\[(Disruptive|Feature:[^\\]]+|Flaky)\\]" \
-disable-log-dump \
-provider "skeleton" \
-report-dir "/var/log/kubernetes/e2e" \
-v 10 2>&1 | tee /var/log/kubernetes/e2e/e2e.log || true
The program rpctool
allows users on VMs running on vSphere to manipulate the VM's GuestInfo and OVF environment data.
root@photon-machine [ ~ ]# /var/lib/yakity/rpctool
COMMAND is required
usage: /var/lib/yakity/rpctool [FLAGS] COMMAND [ARGS]
COMMANDS
get KEY
Gets the value for the specified guestinfo key
The script posix-args.sh
provides two POSIX-compliant functions for getting the last argument in an array as well as getting all but the last argument. The following example illustrates how to use the functions and the expected results:
t="$(mktemp)" && \
curl -o "${t}" -sSL \
http://bit.ly/posix-args && \
. "${t}" && rm -f "${t}" # load the two functions from "posix-args.sh"
set -- one two three four # set the shell's arguments value
echo "there are ${#} args" # prints "there are 4 args"