GitXplorerGitXplorer
o

kscripts

public
0 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
77460239a0853e0aa4463d3cbd18cf440c6b4386

Able to create box and vagrant up

oobject88 committed 6 years ago
Unverified
724fe623d1d5a25ed3f432d81f0fcdfa648c39f6

Still fixing initialization scripts

oobject88 committed 6 years ago
Unverified
fad01ed1ae35189ef8025dab515a13592cce51cd

Fixing Linux Acadamy setup scripts

oobject88 committed 6 years ago
Unverified
fc94d12246dbc0cd50d5c01b43bacfa1d5fda2a8

Working towards packer, coreos, vagrant

oobject88 committed 6 years ago
Unverified
796fa51210e552fcdfd0e93c7c82424ed6866034

Script to set up SSH keys

oobject88 committed 6 years ago
Unverified
5ed10878dc6c41dd11d656c2c78e5972ed3d38aa

Starting to make vagrat and packer scripts

committed 6 years ago

README

The README file for this repository.

kscripts

A collection of scripts around Kubernetes management

Prerequisites

These scripts are written to run on a Mac, using Bash 4. They also depend on certain tools being installed. The prerequities.sh script will evaluate your system, and report which tools, if any, are missing.

Configuring SSH

In order to shorten certain commands using SCP and SSH, your ssh_config must be set up, either globally or in your user's $HOME/.ssh/config file. In particular:

Host *.mylabserver.com
 User user
 IdentityFile ~/.ssh/la_cka
 StrictHostKeyChecking no
 IdentitiesOnly yes

This specifies that for any operation against a machine in the mylabserver.com domain, the user will be user, it will use an identity file named la_cka, etc. The identity file may be generated using the setup-ssh-keys.sh script, which will generate a new public / private key token, and copy the public key to a series of target machines.