-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[mosquitto] added mqtt broker (#104)
* removed transmission * removed transmission * disable curr mqtt broker * disable curr mqtt broker * disable curr mqtt broker * disable curr mqtt broker * disable curr mqtt broker * disable curr mqtt broker * disable curr mqtt broker * disable curr mqtt broker * installing mosquitto Signed-off-by: Carlos Ravelo <[email protected]> * fixing config Signed-off-by: Carlos Ravelo <[email protected]> * service config Signed-off-by: Carlos Ravelo <[email protected]> * service config Signed-off-by: Carlos Ravelo <[email protected]> * revert change for sftp * revert change for sftp * revert change for sftp * revert change for sftp * revert change for sftp * remove mosquitto * remove mosquitto * update zigbee to point to the new mqtt broker * update zigbee to point to the new mqtt broker Co-authored-by: Carlos Ravelo <[email protected]>
- Loading branch information
Showing
5 changed files
with
43 additions
and
12 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
--- | ||
apiVersion: helm.toolkit.fluxcd.io/v2beta1 | ||
kind: HelmRelease | ||
metadata: | ||
name: mosquitto | ||
namespace: default | ||
spec: | ||
chart: | ||
spec: | ||
chart: mosquitto | ||
version: 4.3.2 | ||
sourceRef: | ||
kind: HelmRepository | ||
name: k8s-at-home | ||
namespace: flux-system | ||
dependsOn: | ||
- name: yasr-volume | ||
interval: 1h0m0s | ||
values: | ||
# TODO: why does it have to be NodePort? | ||
service: | ||
main: | ||
type: NodePort | ||
ports: | ||
mqtt: | ||
enabled: true | ||
port: 1883 | ||
nodePort: 1883 | ||
persistence: | ||
configinc: | ||
enabled: true | ||
type: pvc | ||
existingClaim: yasr-volume | ||
subPath: configs/mosquitto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters