Skip to content

Commit e851626

Browse files
authored
Fix capitalization of namespace (#82)
* Fix capitalization of namespace * Remove check for installed version
1 parent 564dd25 commit e851626

File tree

29 files changed

+44
-44
lines changed

29 files changed

+44
-44
lines changed

docs/getting-started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Or if you are using Tower or AWX add the collection to your requirements file.
1414

1515
```
1616
collections:
17-
- name: NETWAYS.elasticstack
17+
- name: netways.elasticstack
1818
```
1919

2020
Usage
@@ -26,7 +26,7 @@ To use the collection in your Ansible playbook add the following key to your pla
2626
- name: Playbook
2727
hosts: some_host_pattern
2828
collections:
29-
- NETWAYS.elasticstack
29+
- netways.elasticstack
3030
tasks:
3131
- name: import role logstash
3232
import_role:
@@ -41,7 +41,7 @@ Or refer to the role with the FQCN of the role.
4141
tasks:
4242
- name: import role by FQCN from a collection
4343
import_role:
44-
name: NETWAYS.elasticstack.logstash
44+
name: netways.elasticstack.logstash
4545
```
4646

4747
Roles

docs/role-beats.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Ansible Role: Beats
22
=========
33

4-
![Test Role Beats](https://github.com/NETWAYS/ansible-collection-elasticstack/actions/workflows/test_role_beats.yml/badge.svg)
4+
![Test Role Beats](https://github.com/netways/ansible-collection-elasticstack/actions/workflows/test_role_beats.yml/badge.svg)
55

66
This role installs and configures Beats. You can use it as a standalone role or combine it with our other roles managing the Elastic Stack.
77

@@ -110,7 +110,7 @@ If you want to use this role with your own TLS certificates, use these variables
110110
- name: Install Elastic Beats
111111
hosts: beats-hosts
112112
collections:
113-
- NETWAYS.elasticstack
113+
- netways.elasticstack
114114
vars:
115115
elasticsearch_jna_workaround: true
116116
elasticsearch_disable_systemcallfilterchecks: true

docs/role-elasticsearch.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ELASTICSEARCH
22
=========
33

4-
![Test Role Elasticsearch](https://github.com/NETWAYS/ansible-collection-elasticstack/actions/workflows/test_role_elasticsearch.yml/badge.svg)
4+
![Test Role Elasticsearch](https://github.com/netways/ansible-collection-elasticstack/actions/workflows/test_role_elasticsearch.yml/badge.svg)
55

66
This role installs manages Elasticsearch on your hosts. Optionally it can configure Elastics Security components, too.
77

@@ -22,7 +22,7 @@ Role Variables
2222
* *elasticsearch_disable_systemcallfilterchecks*: Disable system call filter checks. This has a security impact but is necessary on some systems. Please refer to the [docs](https://www.elastic.co/guide/en/elasticsearch/reference/7.17/_system_call_filter_check.html) for details. (default: `false`)
2323
* *elasticsearch_pamlimits*: Set pam_limits neccessary for Elasticsearch. (Default: `true`)
2424

25-
This variable activates a workaround to start on systems that have certain hardening measures active. See [Stackoverflow](https://stackoverflow.com/questions/47824643/unable-to-load-jna-native-support-library-elasticsearch-6-x/50371992#50371992) for details and logmessages to look for. **WARNING**: This will change your `/etc/sysconfig/elasticseach`or `/etc/default/elasticsearch` file and overwrite `ES_JAVA_OPTS`. See this [issue](https://github.com/NETWAYS/ansible-role-elasticsearch/issues/79) for details.
25+
This variable activates a workaround to start on systems that have certain hardening measures active. See [Stackoverflow](https://stackoverflow.com/questions/47824643/unable-to-load-jna-native-support-library-elasticsearch-6-x/50371992#50371992) for details and logmessages to look for. **WARNING**: This will change your `/etc/sysconfig/elasticseach`or `/etc/default/elasticsearch` file and overwrite `ES_JAVA_OPTS`. See this [issue](https://github.com/netways/ansible-role-elasticsearch/issues/79) for details.
2626

2727
* *elasticsearch_jna_workaround*: Activate JNA workaround. (default: `false`)
2828

@@ -34,7 +34,7 @@ These variables are identical over all our elastic related roles, hence the diff
3434
```
3535
- name: Install Elasticsearch
3636
collections:
37-
- NETWAYS.elasticstack
37+
- netways.elasticstack
3838
hosts: elasticsearch-hosts
3939
vars:
4040
elastic_variant: oss

docs/role-kibana.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Ansible Role: Kibana
22
=========
33

4-
![Test Role Kibana](https://github.com/NETWAYS/ansible-collection-elasticstack/actions/workflows/test_role_kibana.yml/badge.svg)
4+
![Test Role Kibana](https://github.com/netways/ansible-collection-elasticstack/actions/workflows/test_role_kibana.yml/badge.svg)
55

66
This roles installs and configures Kibana.
77

@@ -35,7 +35,7 @@ If you use `localhost` in `kibana_elasticsearch_hosts` , certificate verificatio
3535
```
3636
- name: Install Kibana
3737
collections:
38-
- NETWAYS.elasticstack
38+
- netways.elasticstack
3939
hosts: kibana-host
4040
vars:
4141
elastic_stack_full_stack: true

docs/role-logstash.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Ansible Role: Logstash
22
=========
33

4-
![Test Role Logstash](https://github.com/NETWAYS/ansible-collection-elasticstack/actions/workflows/test_role_logstash.yml/badge.svg)
4+
![Test Role Logstash](https://github.com/netways/ansible-collection-elasticstack/actions/workflows/test_role_logstash.yml/badge.svg)
55

66
This role installs and configures [Logstash](https://www.elastic.co/products/logstash) on Linux systems.
77

@@ -97,7 +97,7 @@ The following variables only apply if you use this role together with our Elasti
9797
- name: Install Logstash
9898
hosts: logstash-host
9999
collections:
100-
- NETWAYS.elasticstack
100+
- netways.elasticstack
101101
roles:
102102
- repos
103103
- logstash

docs/role-repos.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Elastic Repos
22
=========
33

4-
![Test Role repos](https://github.com/NETWAYS/ansible-collection-elasticstack/actions/workflows/test_role_repos.yml/badge.svg)
4+
![Test Role repos](https://github.com/netways/ansible-collection-elasticstack/actions/workflows/test_role_repos.yml/badge.svg)
55

66
The role adds Elastic repositories to the package manager. It's main use is in connection with other roles that provide installation and configuration of the Elastic Stack.
77

@@ -28,7 +28,7 @@ Usage
2828
- hosts: all
2929
become: yes
3030
collections:
31-
- NETWAYS.elasticstack
31+
- netways.elasticstack
3232
roles:
3333
- repos
3434
```

galaxy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace: NETWAYS
1+
namespace: netways
22
name: elasticstack
33
version: 1.0.0
44
readme: README.md
@@ -23,10 +23,10 @@ tags:
2323
- monitoring
2424
dependencies:
2525
"community.general": "*"
26-
repository: https://github.com/NETWAYS/ansible-collection-elasticstack
27-
documentation: https://github.com/NETWAYS/ansible-collection-elasticstack/README.md
26+
repository: https://github.com/netways/ansible-collection-elasticstack
27+
documentation: https://github.com/netways/ansible-collection-elasticstack/README.md
2828
homepage: https://www.netways.de
29-
issues: https://github.com/NETWAYS/ansible-collection-elasticstack/issues
29+
issues: https://github.com/netways/ansible-collection-elasticstack/issues
3030
build_ignore:
3131
- .github
3232
- .cache

molecule/beats_default/converge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
- name: Converge
77
hosts: all
88
collections:
9-
- NETWAYS.elasticstack
9+
- netways.elasticstack
1010
vars:
1111
elastic_stack_full_stack: false
1212
elasticsearch_jna_workaround: true

molecule/beats_full_stack/converge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
- name: Converge
77
hosts: all
88
collections:
9-
- NETWAYS.elasticstack
9+
- netways.elasticstack
1010
vars:
1111
elastic_stack_full_stack: true
1212
filebeat_syslog_udp: true

molecule/beats_peculiar/converge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
- name: Converge
77
hosts: all
88
collections:
9-
- NETWAYS.elasticstack
9+
- netways.elasticstack
1010
vars:
1111
filebeat_log_inputs:
1212
messages:

0 commit comments

Comments
 (0)