James Tombleson
d14c2aaa2c
* docker tests are looking good and nfs is able to connect and containers can talk to each other. * Added pihole support for a new vm * pihole is not working yet via docker. Installed it by hand without ansible for now. * added some docker related tasks and working on collins now to see how to use it. * forgot to push some changes... kube didnt work out as it adds too much overhead for what I need. * added two roles to help working with backup and restore of docker volume data. * did some cleanup on old roles. * pushing for axw testing * moving to requirements.yml. adding cron jobs for maint. * roles are being moved out of this repo. Roles are handled by requirements.yml going forward. Dev roles are still in the repo but if they stick around a new repo will be made for it. * Made a bunch of changes * fixed a problem * Added a playbook to deploy grafana and added prometheus role to monitor things. * Updated cron to test * Updated cron to test * Updated cron * updated discord_webhook and now testing if cron will pick up the changes. * Fixed plex backup for now. * docker updates and working on nginx * pushing pending changes that need to go live for cron testing * fixed debug roles and updated discord test * fixed debug roles and updated discord test * Disabling test cron * its been awhile... I am not sure what I have done anymore but time to push my changes. * added newsbot configs, added to jenkins, starting to migrate to collections. * Updated inventory to support the network changes * jenkinsfile is now working in my local setup. * node2 is unhealthy and is removed from inv. I was doing something to this box months ago, but now i dont remember what it was." * updated images and adding them to jenkins for testing * removed the old image files and moved to my public image * Jenkins will now inform discord of jobs. Added post tasks. Added mediaserver common. * updated the backend update job and adding a jenkins pipeline to handle it for me. * updated the backup job again * Updated all the jekins jobs. Added a jenkins newsbot backup job. Adjusted newsbot plays to add backup and redeploy jobs. * updated newsbot backup playbook to make older backup files as needed. * Added debug message to report in CI what version is getting deployed. * I did something stupid and this device is not letting me login for now. * removing twitter source for now as I found a bandwidth related bug that wont get pushed for a bit * Adding a bunch of changes, some is cleanup and some are adds * updated the images * updated the kube common playbook * Started to work on ceph, stopped due to hardware resources, updated common, added monit, and starting to work on a playbook to handle my ssh access. * Added a role to deploy monit to my servers. Still needs some more updates before its ready * Here is my work on ceph, it might go away but I am not sure yet. * Starting to migrate my common playbook to a role, not done yet. * updated kube and inventory * updated gitignore
57 lines
2.3 KiB
YAML
57 lines
2.3 KiB
YAML
---
|
|
|
|
- name: Manage Rancher Workers
|
|
hosts: rancher-worker
|
|
become: true
|
|
vars:
|
|
token: !vault |
|
|
$ANSIBLE_VAULT;1.1;AES256
|
|
30613833333861303239396233323731343562623565303962393536393462306336643534383235
|
|
6637613737633931653532613463353838366261303765320a616464653364613737396265313739
|
|
62363131353535386434616431343432393439636662363130616363616334656534326134623932
|
|
6466613036363633360a343033373765646334643639383530343834656661643265363463303434
|
|
37653032383161396265633433356433623463386165386538626366366665333361363939613364
|
|
33343964623037356162643661666165666562366535656638663537653034626161636239306332
|
|
316239663536613064353830333936326465
|
|
ca: !vault |
|
|
$ANSIBLE_VAULT;1.1;AES256
|
|
66303462636433643737393864633234346333386139653762383330333661373337626462393063
|
|
6433333266303337343937346231303661323039373135620a316263303734393537393232623932
|
|
66396534613032666430613139636533616130353131653263646532326537343066383662366261
|
|
3262306262393932390a646132323834363033363934376639396466396661346530323539326236
|
|
61313263626134653963653433653234353061626135373738366361343134323331323737623632
|
|
63386463306437306661363734666561366166326330646434626338323065373731616137616564
|
|
62613563306666376664333564316435313431643336386466303164663363383032343431356263
|
|
31623761653032636235
|
|
|
|
tasks:
|
|
- include_role:
|
|
name: common
|
|
vars:
|
|
#linux: true
|
|
#docker: true
|
|
|
|
- name: stop agent if found
|
|
docker_container:
|
|
name: rancherworker
|
|
state: stopped
|
|
ignore_errors: true
|
|
|
|
- name: start agent
|
|
docker_container:
|
|
name: rancherworker
|
|
image: rancher/rancher-agent:v2.3.2
|
|
state: started
|
|
network_mode: host
|
|
privileged: true
|
|
restart_policy: unless-stopped
|
|
command: --worker --etcd --controlplane
|
|
env:
|
|
server=https://192.168.0.241
|
|
#token=krgdcfchvhprzstmwgbsmzz2qj8kmcrgc8q26wpdklr9kfpdqgg5sg
|
|
"token={{ token }}"
|
|
#ca-checksum=a7077c8e0381f72a7091eda6e617a16b2259227113f66d042a453767174b2dbb
|
|
volumes:
|
|
- "/etc/kubernetes:/etc/kubernetes"
|
|
- "/var/run:/var/run"
|
|
# --worker |