Skip to content

Commit

Permalink
Merging k9s (#66)
Browse files Browse the repository at this point in the history
Signed-off-by: Josh Cox <[email protected]>
  • Loading branch information
joshuacox authored Sep 17, 2020
1 parent 3dcefa6 commit b08f772
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 11 deletions.
15 changes: 14 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
$(eval CT_VERSION := "v0.9.0")
$(eval CNI_VERSION := "v0.8.5")
$(eval NVM_VERSION := "v0.35.3")
$(eval PACKER_VERSION := "1.6.1")
$(eval PACKER_VERSION := "1.6.2")
$(eval CRICTL_VERSION := "v1.18.0")

# Install location
Expand Down Expand Up @@ -53,6 +53,9 @@ $(eval HELM_INSTALL_DIR := "$(KUBASH_BIN)")
# Istio
$(eval ISTIO_VERSION := "1.6.7")

# K9S
$(eval K9S_VERSIION := "v0.21.7")

all: $(KUBASH_BIN)/kush $(KUBASH_BIN)/kzsh $(KUBASH_BIN)/kudash reqs anaconda nvm

reqs: linuxreqs
Expand Down Expand Up @@ -96,6 +99,16 @@ $(KUBASH_BIN)/istioctl:
rm -Rf $(TMP)/istio-$(ISTIO_VERSION)
rmdir $(TMP)

k9s: $(KUBASH_BIN)
@scripts/kubashnstaller k9s

$(KUBASH_BIN)/k9s:
@echo 'Installing k9s'
$(eval TMP := $(shell mktemp -d --suffix=KUBECTLTMP))
cd $(TMP) && \
curl -L https://github.com/derailed/k9s/releases/download/v0.21.7/k9s_Linux_x86_64.tar.gz |tar zxf -
mv $(TMP)/k9s $(KUBASH_DIR)/bin/
rm -Rf $(TMP)

kubectl: $(KUBASH_BIN)
@scripts/kubashnstaller kubectl
Expand Down
2 changes: 1 addition & 1 deletion submodules/istio
Submodule istio updated 11335 files
2 changes: 1 addition & 1 deletion submodules/kubespray
2 changes: 1 addition & 1 deletion submodules/openshift-ansible
Submodule openshift-ansible updated 43 files
+1 −1 .pylintrc
+2 −1 .travis.yml
+1 −1 README.md
+13 −0 images/installer/container.yaml
+1 −1 images/installer/root/usr/local/bin/generate
+3 −5 openshift-ansible.spec
+0 −8 pytest.ini
+1 −1 requirements.txt
+1 −1 roles/openshift_node/callback_plugins/aa_version_requirement.py
+11 −24 roles/openshift_node/defaults/main.yml
+0 −296 roles/openshift_node/library/oc_csr_approve.py
+27 −47 roles/openshift_node/tasks/apply_machine_config.yml
+76 −62 roles/openshift_node/tasks/config.yml
+0 −21 roles/openshift_node/tasks/gather_debug.yml
+22 −35 roles/openshift_node/tasks/install.yml
+4 −4 roles/openshift_node/tasks/proxy.yml
+1 −1 roles/openshift_node/tasks/scaleup_checks.yml
+3 −3 roles/openshift_node/tasks/upgrade.yml
+0 −38 roles/openshift_node/test/test_data/oc_csr_approve_pending.json
+0 −361 roles/openshift_node/test/test_data/oc_csr_server_multiple_pends_one_host.json
+0 −450 roles/openshift_node/test/test_data/oc_get_nodes.json
+0 −1 roles/openshift_node/test/test_data/openssl1.txt
+0 −161 roles/openshift_node/test/test_oc_csr_approve.py
+3 −7 setup.py
+4 −5 test-requirements.txt
+1 −1 test/aws/additional_repos.yml
+0 −61 test/aws/create_machines.yml
+58 −0 test/aws/create_machineset.yml
+20 −0 test/aws/files/01_service.yml
+5 −0 test/aws/files/02_serviceaccount.yml
+14 −0 test/aws/files/03_role.yml
+15 −0 test/aws/files/04_rolebinding.yml
+18 −0 test/aws/files/05_clusterrole.yml
+14 −0 test/aws/files/06_clusterrolebinding.yml
+43 −0 test/aws/files/07_deployment.yml
+20 −0 test/aws/files/sshd_config
+1 −1 test/aws/gather_logs.yml
+34 −0 test/aws/get_machinesets.yml
+90 −54 test/aws/scaleup.yml
+94 −0 test/aws/ssh_bastion.yml
+0 −112 test/aws/tasks/create_machineset.yml
+0 −32 test/aws/tasks/get_machinesets.yml
+4 −2 tox.ini
2 changes: 1 addition & 1 deletion submodules/pupernetes
Submodule pupernetes updated 74 files
+1 −1 .ci/sonobuoy.sh
+1 −1 .circleci/config.yml
+1 −1 .gitignore
+9 −8 .travis.yml
+24 −195 Gopkg.lock
+4 −8 Gopkg.toml
+0 −1 LICENSE-3rdparty.csv
+1 −1 Makefile
+1 −5 README.md
+2 −2 docs/pupernetes_daemon.md
+2 −2 docs/pupernetes_daemon_clean.md
+2 −2 docs/pupernetes_daemon_run.md
+2 −2 docs/pupernetes_daemon_setup.md
+2 −4 environments/container-linux/ignition.yaml
+1 −1 examples/circleci.yaml
+1 −1 examples/travis.yaml
+2 −4 pkg/config/config.go
+0 −10 pkg/job/systemd.go
+1 −1 pkg/run/state/notify.go
+1 −1 pkg/setup/binary_etcd.go
+18 −37 pkg/setup/binary_hyperkube.go
+0 −92 pkg/setup/binary_hyperkube_shell.go
+1 −1 pkg/setup/clean.go
+1 −1 pkg/setup/manifests.go
+0 −2 pkg/setup/network.go
+4 −18 pkg/setup/setup.go
+1 −1 pkg/setup/systemd.go
+1 −0 pkg/setup/templates/1.10.go
+1 −0 pkg/setup/templates/1.11.go
+1 −0 pkg/setup/templates/1.12.go
+1 −0 pkg/setup/templates/1.13.go
+1 −0 pkg/setup/templates/1.14.go
+0 −723 pkg/setup/templates/1.15.go
+0 −734 pkg/setup/templates/1.16.go
+0 −734 pkg/setup/templates/1.17.go
+0 −734 pkg/setup/templates/1.18.go
+1 −0 pkg/setup/templates/1.5.go
+1 −0 pkg/setup/templates/1.6.go
+1 −0 pkg/setup/templates/1.7.go
+1 −0 pkg/setup/templates/1.8.go
+1 −0 pkg/setup/templates/1.9.go
+12 −23 pkg/setup/templates/manifests.go
+14 −0 pkg/setup/version.go
+34 −0 pkg/setup/version_test.go
+0 −6 releasenotes.md
+0 −23 scripts/install-wwhrd.sh
+2 −3 scripts/update/license.sh
+0 −1 vendor/github.com/Masterminds/semver/.gitignore
+0 −26 vendor/github.com/Masterminds/semver/.golangci.yml
+0 −27 vendor/github.com/Masterminds/semver/.travis.yml
+0 −172 vendor/github.com/Masterminds/semver/CHANGELOG.md
+0 −19 vendor/github.com/Masterminds/semver/LICENSE.txt
+0 −37 vendor/github.com/Masterminds/semver/Makefile
+0 −242 vendor/github.com/Masterminds/semver/README.md
+0 −17 vendor/github.com/Masterminds/semver/appveyor.yml
+0 −24 vendor/github.com/Masterminds/semver/collection.go
+0 −530 vendor/github.com/Masterminds/semver/constraints.go
+0 −184 vendor/github.com/Masterminds/semver/doc.go
+0 −22 vendor/github.com/Masterminds/semver/fuzz.go
+0 −3 vendor/github.com/Masterminds/semver/go.mod
+0 −583 vendor/github.com/Masterminds/semver/version.go
+9 −9 vendor/github.com/hashicorp/hcl/.gitignore
+18 −18 vendor/github.com/hashicorp/hcl/Makefile
+29 −29 vendor/github.com/pelletier/go-toml/example-crlf.toml
+21 −21 vendor/github.com/spf13/afero/.travis.yml
+683 −0 vendor/github.com/spf13/cobra/cobra/cmd/license_agpl.go
+238 −0 vendor/github.com/spf13/cobra/cobra/cmd/license_apache_2.go
+71 −0 vendor/github.com/spf13/cobra/cobra/cmd/license_bsd_clause_2.go
+78 −0 vendor/github.com/spf13/cobra/cobra/cmd/license_bsd_clause_3.go
+376 −0 vendor/github.com/spf13/cobra/cobra/cmd/license_gpl_2.go
+711 −0 vendor/github.com/spf13/cobra/cobra/cmd/license_gpl_3.go
+186 −0 vendor/github.com/spf13/cobra/cobra/cmd/license_lgpl.go
+63 −0 vendor/github.com/spf13/cobra/cobra/cmd/license_mit.go
+118 −0 vendor/github.com/spf13/cobra/cobra/cmd/licenses.go
2 changes: 1 addition & 1 deletion submodules/rook
Submodule rook updated 761 files
Original file line number Diff line number Diff line change
Expand Up @@ -293,17 +293,15 @@
"https_proxy": "{{env `https_proxy`}}",
"hyperv_generation": "2",
"hyperv_switch": "{{env `hyperv_switch`}}",
"iso_checksum": "e2ecdace33c939527cbc9e8d23576381c493b071107207d2040af72595f8990b",
"iso_checksum_type": "sha256",
"iso_name": "ubuntu-18.04.4-server-amd64.iso",
"iso_checksum": "8c5fc24894394035402f66f3824beb7234b757dd2b5531379cb310cedfdf0996",
"iso_name": "ubuntu-18.04.5-server-amd64.iso",
"memory": "2048",
"mirror": "http://cdimage.ubuntu.com",
"mirror_directory": "ubuntu/releases/18.04.4/release",
"mirror_directory": "ubuntu/releases/18.04.5/release",
"name": "kubash-REPLACEME_KUBE_VERSION-18.04",
"no_proxy": "{{env `no_proxy`}}",
"preseed_path": "preseed.cfg",
"template": "bionicREPLACEME_KUBE_VERSION-18.04-amd64",
"version": "TIMESTAMP"
}
}

0 comments on commit b08f772

Please sign in to comment.