-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
69 additions
and
11 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
-----BEGIN PGP SIGNATURE----- | ||
|
||
iQGzBAABCAAdFiEE/bJvyFHKKJdaZDOLTiIiIXrUDNEFAmUtZloACgkQTiIiIXrU | ||
DNETTAwAndUs5fh7Y4wSRwXvpMFgvaDVO4pJWYoWchmXOdXpAzPewouowdoVajOO | ||
mTjkfeYvlCQg6aH52G/hOqGWv3WBZhNtb4fOc5EsXEh0wpQuhMSB994TOUr7eH9b | ||
+PKPS+AGKA2nNTQ5xbtNqqrRcf/EsmRmRPjnG+uGA3iaWfJrSZFY0SxI3luqMiPU | ||
OIkknrPHXNfYeTS8JnheXPj2xAabMDn6YGU2B8uciGoQi7DlNP4gdsz83pCIDLbt | ||
ExqiPb3NGkX9HoF0DXL7QY2xKDjIPFkeM5c9a9FiANsfx+0aGrObvzYcGEQ4NLX3 | ||
qMFbOGYZrWQOS1S3SNXZpBFAMLE8TnGd318Hl+vpdWg0H7kf5Blap4cYKd765yR8 | ||
LCH+AZqsajsYCSKPT+ZFNQCMw5WfVrvY89PuSsVZuvgbjzJS7HQ8AwSiJEZk1snP | ||
xwTtsOCB7xoCtaybn7ET6AMkFnETvghc/n3zpC/XsahB510Hb+xT+3AakW7Da1HN | ||
2H6bJtBq | ||
=xx6R | ||
iQGzBAABCAAdFiEE/bJvyFHKKJdaZDOLTiIiIXrUDNEFAmUtdBAACgkQTiIiIXrU | ||
DNEt7Av+INhx6teAfvLYrtlo4j7tEeXCayk+lYcro875rVvLvYWbo2ZobIpV9oxZ | ||
nDgrXfh37hTdH5rXwB1EXLoULZNpEZREb0T6EM6tWkOpOG1B24I5v3fzupgC5ggz | ||
egafrXQ1NPrAdPaBpwhVLWddR7aEYBzFtBTl6pkDLt/KIm34+avrzsneKqUQuCwr | ||
OkzU0M74MI9ILBsc+D3eRH/DnzUG6lOuTk8J210uI8xiZknrzvwyokdWF5umq9ne | ||
BzJpFYJ1AvUhs1MbvgGl6qp9j6hsI226ITiQxuQJsWx8bUnXKy4Zu1x095PG/2k9 | ||
44LYqKUuLPN0hm8oKsv0wdb2tuqiEWuvRJ4fVl4sbzbrtnRdSgA/4MuKN8mH/h+B | ||
eHePuIFBT9v0z5IDqz2KZuG4TMb7jgsGB3dOftMPO3cHjmOujoiO+R4isZ3qM8k1 | ||
CgqPa4gNI3equ0vAIL/aDRy6VHDqEseY8vaJTBCqUYru2StcLcDlW9JRw5sqHYu6 | ||
mMgcVoD5 | ||
=iS7N | ||
-----END PGP SIGNATURE----- |
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,6 @@ | ||
--- | ||
- name: Install Kafka via Podman | ||
hosts: all | ||
|
||
roles: | ||
- kafka |
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,5 @@ | ||
--- | ||
- name: Restart Firewalld | ||
ansible.builtin.service: | ||
name: firewalld | ||
state: restarted |
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,37 @@ | ||
--- | ||
- name: Ensure "messaging" network exists | ||
containers.podman.podman_network: | ||
name: messaging | ||
state: present | ||
|
||
- name: Start the ZooKeeper container | ||
containers.podman.podman_container: | ||
name: zookeeper | ||
image: bitnami/zookeeper | ||
state: started | ||
env: | ||
ALLOW_ANONYMOUS_LOGIN: 'yes' | ||
ports: | ||
- "2181:2181" | ||
network: messaging | ||
|
||
|
||
- name: Start the Kafka container | ||
containers.podman.podman_container: | ||
name: kafka | ||
image: bitnami/kafka | ||
state: started | ||
env: | ||
ALLOW_PLAINTEXT_LISTENER: 'yes' | ||
KAFKA_CFG_ZOOKEEPER_CONNECT: "zookeeper:2181" | ||
KAFKA_ADVERTISED_LISTENERS: "PLAINTEXT://localhost:9092" | ||
ports: | ||
- "9092:9092" | ||
network: messaging | ||
|
||
- name: Open Firewalld for Kafka | ||
ansible.posix.firewalld: | ||
port: 9092/tcp | ||
permanent: true | ||
state: enabled | ||
notify: "Restart Firewalld" |
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,6 @@ | ||
--- | ||
- name: Install Winglogbeat | ||
hosts: all | ||
|
||
roles: | ||
- winlogbeats | ||
Check failure on line 6 in winlogbeatinstall.yml GitHub Actions / buildsyntax-check[specific]
|