Setup pipeline to support Wyze bridge
This commit is contained in:
parent
56da8ba7db
commit
4a87bc5606
|
@ -14,7 +14,7 @@ pipeline {
|
||||||
frigate_config = readJSON file: 'frigate_config.json'
|
frigate_config = readJSON file: 'frigate_config.json'
|
||||||
}
|
}
|
||||||
|
|
||||||
ansiblePlaybook credentialsId: 'rivendell-ssh-key', disableHostKeyChecking: true, extras: "--extra-vars 'ipgeolocation_api_key=\"${frigate_config.ipgeolocation.api_key}\" garage_rtsp_password=\"${frigate_config.rtsp.garage.password}\" front_door_rtsp_password=\"${frigate_config.rtsp.front_door.password}\" doorbell_rtsp_password=\"${frigate_config.rtsp.doorbell.password}\" driveway_rtsp_password=\"${frigate_config.rtsp.driveway.password}\" back_door_rtsp_password=\"${frigate_config.rtsp.back_door.password}\" family_room_rtsp_password=\"${frigate_config.rtsp.family_room.password}\"'", playbook: 'install.yaml'
|
ansiblePlaybook credentialsId: 'rivendell-ssh-key', disableHostKeyChecking: true, extras: "--extra-vars 'ipgeolocation_api_key=\"${frigate_config.ipgeolocation.api_key}\" wyze_email=\"${frigate_config.wyze.email}\" wyze_password=\"${frigate_config.wyze.password}\" garage_rtsp_password=\"${frigate_config.rtsp.garage.password}\" front_door_rtsp_password=\"${frigate_config.rtsp.front_door.password}\" doorbell_rtsp_password=\"${frigate_config.rtsp.doorbell.password}\" driveway_rtsp_password=\"${frigate_config.rtsp.driveway.password}\" back_door_rtsp_password=\"${frigate_config.rtsp.back_door.password}\" family_room_rtsp_password=\"${frigate_config.rtsp.family_room.password}\"'", playbook: 'install.yaml'
|
||||||
ansiblePlaybook credentialsId: 'rivendell-ssh-key', disableHostKeyChecking: true, playbook: 'stop.yaml'
|
ansiblePlaybook credentialsId: 'rivendell-ssh-key', disableHostKeyChecking: true, playbook: 'stop.yaml'
|
||||||
ansiblePlaybook credentialsId: 'rivendell-ssh-key', disableHostKeyChecking: true, playbook: 'start.yaml'
|
ansiblePlaybook credentialsId: 'rivendell-ssh-key', disableHostKeyChecking: true, playbook: 'start.yaml'
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,6 +3,10 @@
|
||||||
vars_prompt:
|
vars_prompt:
|
||||||
- name: ipgeolocation_api_key
|
- name: ipgeolocation_api_key
|
||||||
prompt: Enter API key for IPGeolocation
|
prompt: Enter API key for IPGeolocation
|
||||||
|
- name: wyze_email
|
||||||
|
prompt: Enter email for Wyze account
|
||||||
|
- name: wyze_password
|
||||||
|
prompt: Enter password for Wyze account
|
||||||
- name: garage_rtsp_password
|
- name: garage_rtsp_password
|
||||||
prompt: Enter password for garage camera RTSP stream user motion
|
prompt: Enter password for garage camera RTSP stream user motion
|
||||||
- name: front_door_rtsp_password
|
- name: front_door_rtsp_password
|
||||||
|
@ -118,6 +122,9 @@
|
||||||
frigate_config:
|
frigate_config:
|
||||||
ipgeolocation:
|
ipgeolocation:
|
||||||
api_key: '{{ipgeolocation_api_key}}'
|
api_key: '{{ipgeolocation_api_key}}'
|
||||||
|
wyze:
|
||||||
|
email: '{{wyze_email}}'
|
||||||
|
password: '{{wyze_password}}'
|
||||||
rtsp:
|
rtsp:
|
||||||
garage:
|
garage:
|
||||||
password: '{{garage_rtsp_password}}'
|
password: '{{garage_rtsp_password}}'
|
||||||
|
|
|
@ -36,6 +36,8 @@
|
||||||
- name: Docker Compose up Frigate
|
- name: Docker Compose up Frigate
|
||||||
environment:
|
environment:
|
||||||
IPGEOLOCATION_API_KEY: '{{frigate_config.ipgeolocation.api_key}}'
|
IPGEOLOCATION_API_KEY: '{{frigate_config.ipgeolocation.api_key}}'
|
||||||
|
WYZE_EMAIL: '{{frigate_config.wyze.email}}'
|
||||||
|
WYZE_PASSWORD: '{{frigate_config.wyze.password}}'
|
||||||
FRIGATE_GARAGE_RTSP_PASSWORD: '{{frigate_config.rtsp.garage.password}}'
|
FRIGATE_GARAGE_RTSP_PASSWORD: '{{frigate_config.rtsp.garage.password}}'
|
||||||
FRIGATE_FRONT_DOOR_RTSP_PASSWORD: '{{frigate_config.rtsp.front_door.password}}'
|
FRIGATE_FRONT_DOOR_RTSP_PASSWORD: '{{frigate_config.rtsp.front_door.password}}'
|
||||||
FRIGATE_DOORBELL_RTSP_PASSWORD: '{{frigate_config.rtsp.doorbell.password}}'
|
FRIGATE_DOORBELL_RTSP_PASSWORD: '{{frigate_config.rtsp.doorbell.password}}'
|
||||||
|
|
Loading…
Reference in New Issue