App to installer packages on remote servers
Project description
--- This document is not finished ---
ikctl (install kit control)
You can use this app to install packages on remote servers (linux).
Description
This app use ssh protocol to connect on remote servers and running bash script to install packages.
Getting Started
Dependencies
- Python 3.10
- paramiko
- pyaml
- envyaml
Installing
To install ikctl you only need pip command
pip install ikctl
When the installation finished you will need to create folder with yours bash scripts and config files:
Create folder
mkdir ~/kits
Create config file where you add yours servers
cat <<EOF | tee ~/kits/config.yaml
servers:
- name: your-server-name
user: your-user
hosts: [10.0.0.67]
port: 22
password: $PASSWORD/<your password>
pkey: "/home/your-home-name/.ssh/id_rsa"
EOF
You will need to add a variable called password with the server access password:
export PASSWORD="your password"
Create ikctl config file where we will indicate our kits.
cat <<EOF | tee ~/kits/ikctl.yaml
kits:
- show-date/ikctl.yaml
EOF
Create folder with our kit
mkdir ~/kits/show-date
In this folder we go to add the follow structure
cat <<EOF | tee ~/kits/show-date/date.sh
#!/bin/bash
date
EOF
# And
cat <<EOF | tee ~/kits/show-date/ikclt.yaml
kits:
- date.sh
EOF
To finish config we need to add path to config file in "~/.ikctl/config"
# editing file config
vim ~/.ikctl/config
context: local
contexts:
local:
path_kits: 'path-to-kits/kits'
path_secrets: '' <= doesn't work, yet
path_servers: 'path-to-kits/kits'
remote:
path_kits: ''
path_secrets: ''
path_servers: ''
Executing program
- Get servers
ikctl -l servers
- Get kits
ikctl -l kits
- Run ikctl to execute bash script
ikctl -i show-date -n your-server-name
Version History
- 0.1
- Initial Release
License
This project is licensed under the Apache License License - see the LICENSE.md file for details
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file ikctl-0.1.9.tar.gz
.
File metadata
- Download URL: ikctl-0.1.9.tar.gz
- Upload date:
- Size: 12.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 641ccb3fc1460a186fcf554dfd6aeeb5118cc6dcdf92b2dd822bbc35e9b0ca22 |
|
MD5 | 22793a946b13858bd7de756b27e6633f |
|
BLAKE2b-256 | 734080c65de299046f68dfe0f3da04f491efe0cfd4baf9daa77d411c213eda83 |