This commit is contained in:
parent
ed046b9566
commit
90a5dd1a89
100
.drone.jsonnet
100
.drone.jsonnet
@ -1,20 +1,3 @@
|
|||||||
local AnsibleVersions(version="latest", package="ansible") = {
|
|
||||||
name: "ansible-" + version,
|
|
||||||
image: "python:3.7",
|
|
||||||
pull: "always",
|
|
||||||
environment: {
|
|
||||||
PY_COLORS: 1
|
|
||||||
},
|
|
||||||
commands: [
|
|
||||||
"pip install " + package + " ansible-later~=0.2.0 -qq",
|
|
||||||
"git clone https://gitea.rknet.org/ansible/ansible-later-policy.git ~/policy",
|
|
||||||
"ansible-later -c ~/policy/config.yml"
|
|
||||||
],
|
|
||||||
depends_on: [
|
|
||||||
"clone",
|
|
||||||
],
|
|
||||||
};
|
|
||||||
|
|
||||||
local PipelineLinting = {
|
local PipelineLinting = {
|
||||||
kind: "pipeline",
|
kind: "pipeline",
|
||||||
name: "linting",
|
name: "linting",
|
||||||
@ -23,8 +6,17 @@ local PipelineLinting = {
|
|||||||
arch: "amd64",
|
arch: "amd64",
|
||||||
},
|
},
|
||||||
steps: [
|
steps: [
|
||||||
AnsibleVersions(version="latest", package="ansible"),
|
{
|
||||||
AnsibleVersions(version="master", package="git+https://github.com/ansible/ansible.git@devel"),
|
name: "ansible-later",
|
||||||
|
image: "xoxys/ansible-later:latest",
|
||||||
|
environment: {
|
||||||
|
PY_COLORS: 1
|
||||||
|
},
|
||||||
|
commands: [
|
||||||
|
"git clone https://gitea.rknet.org/ansible/ansible-later-policy.git ~/policy",
|
||||||
|
"ansible-later -c ~/policy/config.yml"
|
||||||
|
],
|
||||||
|
},
|
||||||
],
|
],
|
||||||
trigger: {
|
trigger: {
|
||||||
ref: ["refs/heads/master", "refs/tags/**", "refs/pull/**"],
|
ref: ["refs/heads/master", "refs/tags/**", "refs/pull/**"],
|
||||||
@ -38,18 +30,17 @@ local PipelineDeployment = {
|
|||||||
os: "linux",
|
os: "linux",
|
||||||
arch: "amd64",
|
arch: "amd64",
|
||||||
},
|
},
|
||||||
|
concurrency: {
|
||||||
|
limit: 1
|
||||||
|
},
|
||||||
workspace: {
|
workspace: {
|
||||||
base: "/drone/src",
|
base: "/drone/src",
|
||||||
path: "xoxys.homeassistant",
|
path: "xoxys.homeassistant"
|
||||||
},
|
|
||||||
concurrency: {
|
|
||||||
limit: 1,
|
|
||||||
},
|
},
|
||||||
steps: [
|
steps: [
|
||||||
{
|
{
|
||||||
name: "molecule",
|
name: "ansible-molecule",
|
||||||
image: "xoxys/molecule:do-linux-amd64",
|
image: "xoxys/molecule:do-linux-amd64",
|
||||||
pull: "always",
|
|
||||||
environment: {
|
environment: {
|
||||||
DO_API_KEY: { "from_secret": "do_api_key" },
|
DO_API_KEY: { "from_secret": "do_api_key" },
|
||||||
USER: "root",
|
USER: "root",
|
||||||
@ -71,9 +62,55 @@ local PipelineDeployment = {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
local PipelineNotifications = {
|
local PipelineDocumentation = {
|
||||||
kind: "pipeline",
|
kind: "pipeline",
|
||||||
name: "notifications",
|
name: "documentation",
|
||||||
|
platform: {
|
||||||
|
os: "linux",
|
||||||
|
arch: "amd64",
|
||||||
|
},
|
||||||
|
steps: [
|
||||||
|
{
|
||||||
|
name: "ansible-doctor",
|
||||||
|
image: "xoxys/ansible-doctor:latest",
|
||||||
|
environment: {
|
||||||
|
ANSIBLE_DOCTOR_LOG_LEVEL: "INFO",
|
||||||
|
ANSIBLE_DOCTOR_FORCE_OVERWRITE: true,
|
||||||
|
ANSIBLE_DOCTOR_EXCLUDE_FILES: "molecule/",
|
||||||
|
ANSIBLE_DOCTOR_CUSTOM_HEADER: "HEADER.md",
|
||||||
|
PY_COLORS: 1
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "push-to-repo",
|
||||||
|
image: "plugins/git-action:latest",
|
||||||
|
settings: {
|
||||||
|
actions: ["commit", "push"],
|
||||||
|
author_email: "shipper@rknet.org",
|
||||||
|
author_name: "DroneShipper",
|
||||||
|
branch: "master",
|
||||||
|
message: "[SKIP CI] update readme",
|
||||||
|
remote: "https://gitea.rknet.org/ansible/xoxys.homeassistant",
|
||||||
|
netrc_machine: "gitea.rknet.org",
|
||||||
|
netrc_username: {"from_secret": "gitea_username"},
|
||||||
|
netrc_password: {"from_secret": "gitea_token"},
|
||||||
|
},
|
||||||
|
when: {
|
||||||
|
ref: ["refs/heads/master"],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
depends_on: [
|
||||||
|
"deployment",
|
||||||
|
],
|
||||||
|
trigger: {
|
||||||
|
ref: ["refs/heads/master", "refs/tags/**", "refs/pull/**"],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
local PipelineNotification= {
|
||||||
|
kind: "pipeline",
|
||||||
|
name: "notification",
|
||||||
platform: {
|
platform: {
|
||||||
os: "linux",
|
os: "linux",
|
||||||
arch: "amd64",
|
arch: "amd64",
|
||||||
@ -86,8 +123,8 @@ local PipelineNotifications = {
|
|||||||
name: "matrix",
|
name: "matrix",
|
||||||
image: "plugins/matrix",
|
image: "plugins/matrix",
|
||||||
settings: {
|
settings: {
|
||||||
homeserver: "https://matrix.rknet.org",
|
homeserver: { "from_secret": "matrix_homeserver" },
|
||||||
roomid: "MtidqQXWWAtQcByBhH:rknet.org",
|
roomid: { "from_secret": "matrix_roomid" },
|
||||||
template: "Status: **{{ build.status }}**<br/> Build: [{{ repo.Owner }}/{{ repo.Name }}]({{ build.link }}) ({{ build.branch }}) by {{ build.author }}<br/> Message: {{ build.message }}",
|
template: "Status: **{{ build.status }}**<br/> Build: [{{ repo.Owner }}/{{ repo.Name }}]({{ build.link }}) ({{ build.branch }}) by {{ build.author }}<br/> Message: {{ build.message }}",
|
||||||
username: { "from_secret": "matrix_username" },
|
username: { "from_secret": "matrix_username" },
|
||||||
password: { "from_secret": "matrix_password" },
|
password: { "from_secret": "matrix_password" },
|
||||||
@ -95,7 +132,7 @@ local PipelineNotifications = {
|
|||||||
},
|
},
|
||||||
],
|
],
|
||||||
depends_on: [
|
depends_on: [
|
||||||
"deployment",
|
"documentation",
|
||||||
],
|
],
|
||||||
trigger: {
|
trigger: {
|
||||||
status: [ "success", "failure" ],
|
status: [ "success", "failure" ],
|
||||||
@ -106,5 +143,6 @@ local PipelineNotifications = {
|
|||||||
[
|
[
|
||||||
PipelineLinting,
|
PipelineLinting,
|
||||||
PipelineDeployment,
|
PipelineDeployment,
|
||||||
PipelineNotifications,
|
PipelineDocumentation,
|
||||||
|
PipelineNotification,
|
||||||
]
|
]
|
||||||
|
82
.drone.yml
82
.drone.yml
@ -7,29 +7,13 @@ platform:
|
|||||||
arch: amd64
|
arch: amd64
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: ansible-latest
|
- name: ansible-later
|
||||||
pull: always
|
image: xoxys/ansible-later:latest
|
||||||
image: python:3.7
|
|
||||||
commands:
|
commands:
|
||||||
- pip install ansible ansible-later~=0.2.0 -qq
|
|
||||||
- git clone https://gitea.rknet.org/ansible/ansible-later-policy.git ~/policy
|
- git clone https://gitea.rknet.org/ansible/ansible-later-policy.git ~/policy
|
||||||
- ansible-later -c ~/policy/config.yml
|
- ansible-later -c ~/policy/config.yml
|
||||||
environment:
|
environment:
|
||||||
PY_COLORS: 1
|
PY_COLORS: 1
|
||||||
depends_on:
|
|
||||||
- clone
|
|
||||||
|
|
||||||
- name: ansible-master
|
|
||||||
pull: always
|
|
||||||
image: python:3.7
|
|
||||||
commands:
|
|
||||||
- "pip install git+https://github.com/ansible/ansible.git@devel ansible-later~=0.2.0 -qq"
|
|
||||||
- git clone https://gitea.rknet.org/ansible/ansible-later-policy.git ~/policy
|
|
||||||
- ansible-later -c ~/policy/config.yml
|
|
||||||
environment:
|
|
||||||
PY_COLORS: 1
|
|
||||||
depends_on:
|
|
||||||
- clone
|
|
||||||
|
|
||||||
trigger:
|
trigger:
|
||||||
ref:
|
ref:
|
||||||
@ -53,8 +37,7 @@ workspace:
|
|||||||
path: xoxys.homeassistant
|
path: xoxys.homeassistant
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: molecule
|
- name: ansible-molecule
|
||||||
pull: always
|
|
||||||
image: xoxys/molecule:do-linux-amd64
|
image: xoxys/molecule:do-linux-amd64
|
||||||
commands:
|
commands:
|
||||||
- /bin/bash /docker-entrypoint.sh
|
- /bin/bash /docker-entrypoint.sh
|
||||||
@ -77,7 +60,54 @@ depends_on:
|
|||||||
|
|
||||||
---
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
name: notifications
|
name: documentation
|
||||||
|
|
||||||
|
platform:
|
||||||
|
os: linux
|
||||||
|
arch: amd64
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: ansible-doctor
|
||||||
|
image: xoxys/ansible-doctor:latest
|
||||||
|
environment:
|
||||||
|
ANSIBLE_DOCTOR_CUSTOM_HEADER: HEADER.md
|
||||||
|
ANSIBLE_DOCTOR_EXCLUDE_FILES: molecule/
|
||||||
|
ANSIBLE_DOCTOR_FORCE_OVERWRITE: true
|
||||||
|
ANSIBLE_DOCTOR_LOG_LEVEL: INFO
|
||||||
|
PY_COLORS: 1
|
||||||
|
|
||||||
|
- name: push-to-repo
|
||||||
|
image: plugins/git-action:latest
|
||||||
|
settings:
|
||||||
|
actions:
|
||||||
|
- commit
|
||||||
|
- push
|
||||||
|
author_email: "shipper@rknet.org"
|
||||||
|
author_name: DroneShipper
|
||||||
|
branch: master
|
||||||
|
message: "[SKIP CI] update readme"
|
||||||
|
netrc_machine: gitea.rknet.org
|
||||||
|
netrc_password:
|
||||||
|
from_secret: gitea_token
|
||||||
|
netrc_username:
|
||||||
|
from_secret: gitea_username
|
||||||
|
remote: https://gitea.rknet.org/ansible/xoxys.homeassistant
|
||||||
|
when:
|
||||||
|
ref:
|
||||||
|
- refs/heads/master
|
||||||
|
|
||||||
|
trigger:
|
||||||
|
ref:
|
||||||
|
- refs/heads/master
|
||||||
|
- "refs/tags/**"
|
||||||
|
- "refs/pull/**"
|
||||||
|
|
||||||
|
depends_on:
|
||||||
|
- deployment
|
||||||
|
|
||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
name: notification
|
||||||
|
|
||||||
platform:
|
platform:
|
||||||
os: linux
|
os: linux
|
||||||
@ -90,10 +120,12 @@ steps:
|
|||||||
- name: matrix
|
- name: matrix
|
||||||
image: plugins/matrix
|
image: plugins/matrix
|
||||||
settings:
|
settings:
|
||||||
homeserver: https://matrix.rknet.org
|
homeserver:
|
||||||
|
from_secret: matrix_homeserver
|
||||||
password:
|
password:
|
||||||
from_secret: matrix_password
|
from_secret: matrix_password
|
||||||
roomid: MtidqQXWWAtQcByBhH:rknet.org
|
roomid:
|
||||||
|
from_secret: matrix_roomid
|
||||||
template: "Status: **{{ build.status }}**<br/> Build: [{{ repo.Owner }}/{{ repo.Name }}]({{ build.link }}) ({{ build.branch }}) by {{ build.author }}<br/> Message: {{ build.message }}"
|
template: "Status: **{{ build.status }}**<br/> Build: [{{ repo.Owner }}/{{ repo.Name }}]({{ build.link }}) ({{ build.branch }}) by {{ build.author }}<br/> Message: {{ build.message }}"
|
||||||
username:
|
username:
|
||||||
from_secret: matrix_username
|
from_secret: matrix_username
|
||||||
@ -107,10 +139,10 @@ trigger:
|
|||||||
- failure
|
- failure
|
||||||
|
|
||||||
depends_on:
|
depends_on:
|
||||||
- deployment
|
- documentation
|
||||||
|
|
||||||
---
|
---
|
||||||
kind: signature
|
kind: signature
|
||||||
hmac: be8a923bf27f1b6781f90c34e1dd06f497ead5db56657e117f7675c03a70c640
|
hmac: 85e6b02e681668f091f3aeb24d5761893ddcb6e7da7393827491a7746d7cdc1e
|
||||||
|
|
||||||
...
|
...
|
||||||
|
2
.gitignore
vendored
2
.gitignore
vendored
@ -9,5 +9,3 @@ __pycache__/
|
|||||||
*.py[cod]
|
*.py[cod]
|
||||||
*$py.class
|
*$py.class
|
||||||
|
|
||||||
# --> Molecule
|
|
||||||
.yamllint
|
|
||||||
|
4
HEADER.md
Normal file
4
HEADER.md
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
# xoxys.homeassistant
|
||||||
|
|
||||||
|
[![Build Status](https://drone.rknet.org/api/badges/ansible/xoxys.homeassistant/status.svg)](https://drone.rknet.org/ansible/xoxys.homeassistant)
|
||||||
|
|
@ -3,9 +3,7 @@ homeassistant_version: 0.92.1
|
|||||||
|
|
||||||
homeassistant_user: homeassistant
|
homeassistant_user: homeassistant
|
||||||
homeassistant_user_home: "/home/{{ homeassistant_user }}"
|
homeassistant_user_home: "/home/{{ homeassistant_user }}"
|
||||||
# homeassistant_uid: # defaults to not set
|
|
||||||
homeassistant_group: "{{ homeassistant_user }}"
|
homeassistant_group: "{{ homeassistant_user }}"
|
||||||
# homeassistant_gid: # defaults to not set
|
|
||||||
homeassistant_extra_groups:
|
homeassistant_extra_groups:
|
||||||
- tty
|
- tty
|
||||||
- dialout
|
- dialout
|
||||||
@ -36,14 +34,18 @@ homeassistant_open_ports:
|
|||||||
-A INPUT -m state --state NEW -p tcp --dport {{ homeassistant_http_bind_port }} -j ACCEPT
|
-A INPUT -m state --state NEW -p tcp --dport {{ homeassistant_http_bind_port }} -j ACCEPT
|
||||||
state: present
|
state: present
|
||||||
|
|
||||||
# override /boot/cmdline.txt with new content
|
# @var homeassistant_cmdline_override_enabled:description: >
|
||||||
# this can be necessary if you use searial hardware
|
# Override `/boot/cmdline.txt` with given conten. This can be necessary
|
||||||
# be careful! wrong config can make your system unusable!
|
# if you use searial hardware, but be careful! Wrong configuration
|
||||||
|
# may leave your system unusable!
|
||||||
|
# @end
|
||||||
homeassistant_cmdline_override_enabled: False
|
homeassistant_cmdline_override_enabled: False
|
||||||
homeassistant_cmdline_content: "console=tty1 root=/dev/mmcblk0p3 rootfstype=ext4 elevator=deadline rootwait"
|
homeassistant_cmdline_content: "console=tty1 root=/dev/mmcblk0p3 rootfstype=ext4 elevator=deadline rootwait"
|
||||||
|
|
||||||
# to prevent ModemManger from binding serial devices like CC2531
|
# @var homeassistant_exclude_modemmanager:description: >
|
||||||
# devices can be skipped by an udev rule
|
# Prevent ModemManger from binding to serial devices and therefor
|
||||||
|
# blocking controllers like a `CC2531`. Devices can be skipped by a udev rule.
|
||||||
|
# @end
|
||||||
homeassistant_exclude_modemmanager: False
|
homeassistant_exclude_modemmanager: False
|
||||||
homeassistant_serial_device:
|
homeassistant_serial_device:
|
||||||
- vendor_id: "0000"
|
- vendor_id: "0000"
|
||||||
|
@ -4,14 +4,12 @@
|
|||||||
group:
|
group:
|
||||||
name: "{{ homeassistant_group }}"
|
name: "{{ homeassistant_group }}"
|
||||||
state: present
|
state: present
|
||||||
gid: "{{ homeassistant_gid | default(omit) }}"
|
|
||||||
|
|
||||||
- name: Create user '{{ homeassistant_user }}'
|
- name: Create user '{{ homeassistant_user }}'
|
||||||
user:
|
user:
|
||||||
comment: homeassistant
|
comment: homeassistant
|
||||||
name: "{{ homeassistant_user }}"
|
name: "{{ homeassistant_user }}"
|
||||||
home: "{{ homeassistant_user_home }}"
|
home: "{{ homeassistant_user_home }}"
|
||||||
uid: "{{ homeassistant_uid | default(omit) }}"
|
|
||||||
group: "{{ homeassistant_group }}"
|
group: "{{ homeassistant_group }}"
|
||||||
groups: "{{ homeassistant_extra_groups | join(',') }}"
|
groups: "{{ homeassistant_extra_groups | join(',') }}"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user