Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/freifunkmuc/ffmuc-salt-public
Freifunk München Salt-Stack states
https://github.com/freifunkmuc/ffmuc-salt-public
docker hacktoberfest saltstack ssh
Last synced: about 1 month ago
JSON representation
Freifunk München Salt-Stack states
- Host: GitHub
- URL: https://github.com/freifunkmuc/ffmuc-salt-public
- Owner: freifunkMUC
- Created: 2019-02-23T22:06:41.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-10-08T21:20:42.000Z (about 1 month ago)
- Last Synced: 2024-10-10T19:41:49.977Z (about 1 month ago)
- Topics: docker, hacktoberfest, saltstack, ssh
- Language: Jinja
- Homepage:
- Size: 156 MB
- Stars: 24
- Watchers: 14
- Forks: 12
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# FFMUC-SALT-PUBLIC Repo
This is the salt repo for Freifunk Munich## Dependencies
This repo makes heavy use of Netbox based ext-pillar information especially config_contexts, services and ip information## Sample config_context
```
{
"docker": {
"cfssl": {
"container_dir": "/srv/docker/cfssl",
"credentials": {
"db_password": "password"
},
"mounts": [
"/srv/docker/postgresql-cfssl/data",
"/srv/docker/cfssl/data",
"/srv/docker/postgresql-cfssl/data"
]
},
"openldap": {
"container_dir": "/srv/docker/openldap",
"credentials": {
"admin_user": "password",
"readonly_user": "password"
},
"mounts": [
"/srv/docker/openldap/data",
"/srv/docker/openldap/config",
"/srv/docker/openldap/certs"
]
},
"zammad": {
"container_dir": "/srv/docker/zammad-docker-compose",
"git": "https://github.com/zammad/zammad-docker-compose.git",
"mounts": [
"/srv/docker/zammad-backup",
"/srv/docker/zammad-data",
"/srv/docker/elasticsearch-zammad/data",
"/srv/docker/postgresql-zammad/data"
]
}
},
"roles": [
"backup_client",
"icinga2_client"
],
"ssh_host_key": {
"ssh_host_ecdsa_key": "",
"ssh_host_ecdsa_key.pub": "",
"ssh_host_ed25519_key": "",
"ssh_host_ed25519_key.pub": "",
"ssh_host_rsa_key": "",
"ssh_host_rsa_key.pub": ""
},
"ssh_user_keys": {
"admins": {
"admin1": "ssh-rsa key-data"
},
"system_users": {},
"users": {}
},
"user_home": {}
}
```