Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,6 @@ The cluster-deployment tools here include helm charts and ansible playbooks to s
| jira | ** | ticket tracking |
| mariadb-galera | [![](https://img.shields.io/docker/v/instantlinux/mariadb-galera?sort=date)](https://hub.docker.com/r/instantlinux/mariadb-galera "Version badge") | automatic cluster setup|
| nexus | ** | binary repo with docker registry |
| python-builder | [![](https://img.shields.io/docker/v/instantlinux/python-builder?sort=date)](https://hub.docker.com/r/instantlinux/python-builder "Version badge") | CI testing for python|
| python-wsgi | [![](https://img.shields.io/docker/v/instantlinux/python-wsgi?sort=date)](https://hub.docker.com/r/instantlinux/python-wsgi "Version badge") | WSGI runtime for python flask apps|
| synapse | ** | self-hosted team chat |
| wordpress | ** | |

Expand Down
2 changes: 1 addition & 1 deletion ansible/ansible.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[defaults]
ansible_managed = This file is managed by Ansible.%n
managed_str = This file is managed by Ansible.%n
template: {file}
date: %Y-%m-%d %H:%M:%S
user: {uid}
Expand Down
6 changes: 3 additions & 3 deletions ansible/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
ansible==8.2.0
ansible-lint==6.17.2
pip==23.2.1
ansible==12.0.0
ansible-lint==25.9.1
pip==25.2
6 changes: 3 additions & 3 deletions ansible/roles/fileserver/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,21 @@
when: ansible_distribution_version < '20.04'

- import_tasks: nfs.yml
when: nfs_exports
when: nfs_exports | length > 0

- name: Disable nfs-server
systemd:
name: nfs-server
state: stopped
enabled: no
when: not nfs_exports
when: nfs_exports | length == 0

- name: Disable rpcbind if no network volumes
systemd:
name: rpcbind
state: stopped
enabled: no
when: not nfs_exports
when: nfs_exports | length == 0

- import_tasks: instantlinux.yml

Expand Down
4 changes: 2 additions & 2 deletions ansible/roles/kubernetes/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@

- name: Set up control plane
include_tasks: cplane.yml
when: k8s.cplane
when: k8s.cplane | length > 0

- name: Join cluster
include_tasks: join.yml
when: not k8s.cplane
when: k8s.cplane | length == 0

- name: Add RequiresMountsFor to kubelet.service
copy:
Expand Down
2 changes: 1 addition & 1 deletion images/nut-upsd/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ USER | nut | local user
VENDORID | | vendor ID for ups.conf
### Notes

To define a notify script, volume-mount it via your docker-compose file under /usr/local/bin and set the NOTIFYCMD environment variable. (*Don't* mount any executable scripts under /etc/nut, put them under /usr/local).
To define a notify script, volume-mount it via your docker-compose file under /usr/local/bin or in your helm values overrides and set the NOTIFYCMD environment variable. (*Don't* mount any executable scripts under /etc/nut, put them under /usr/local).

If you need a driver other than `usbhid-ups`, the full list of supported drivers can be listed as follows:
```
Expand Down
76 changes: 0 additions & 76 deletions images/python-builder/Dockerfile

This file was deleted.

61 changes: 0 additions & 61 deletions images/python-builder/Jenkinsfile

This file was deleted.

1 change: 0 additions & 1 deletion images/python-builder/Makefile

This file was deleted.

64 changes: 0 additions & 64 deletions images/python-builder/Pipfile

This file was deleted.

Loading
Loading