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

+3-3
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

+2-2
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

+3-3
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

+2-2
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

+2-2
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

+2-2
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

+4-4
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

+1-1
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

+1-1
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

+1-1
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:

molecule/beats_peculiar/verify.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
debug:
1212
var: filebeat_version.stdout
1313

14-
- name: Fail if Filebeat has the wrong version
15-
fail:
16-
msg: "Filebeat has the wrong version"
14+
#- name: Fail if Filebeat has the wrong version
15+
# fail:
16+
# msg: "Filebeat has the wrong version"
1717

18-
when: filebeat_version.stdout.find('7.16.1') == -1
18+
# when: filebeat_version.stdout.find('7.16.1') == -1

molecule/elasticsearch_cluster-oss/converge.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Found at: https://github.com/ansible-community/molecule/issues/1567#issuecomment-436876722
44
- name: Converge
55
collections:
6-
- NETWAYS.elasticstack
6+
- netways.elasticstack
77
hosts: all
88
vars:
99
elastic_variant: oss

molecule/elasticsearch_cluster/converge.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Found at: https://github.com/ansible-community/molecule/issues/1567#issuecomment-436876722
44
- name: Converge
55
collections:
6-
- NETWAYS.elasticstack
6+
- netways.elasticstack
77
hosts: all
88
vars:
99
elasticsearch_jna_workaround: true

molecule/elasticsearch_default/converge.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Found at: https://github.com/ansible-community/molecule/issues/1567#issuecomment-436876722
44
- name: Converge
55
collections:
6-
- NETWAYS.elasticstack
6+
- netways.elasticstack
77
hosts: all
88
vars:
99
#elasticsearch_security: true # needed for tests of > 7 releases

molecule/elasticsearch_no-security/converge.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Found at: https://github.com/ansible-community/molecule/issues/1567#issuecomment-436876722
44
- name: Converge
55
collections:
6-
- NETWAYS.elasticstack
6+
- netways.elasticstack
77
hosts: all
88
vars:
99
elasticsearch_security: false

molecule/elasticstack_default/converge.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
- name: Converge
33
collections:
4-
- NETWAYS.elasticstack
4+
- netways.elasticstack
55
hosts: all
66
vars:
77
elasticsearch_jna_workaround: true

molecule/kibana_default/converge.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
elastic_stack_full_stack: false
1010
elastic_release: "{{ lookup('env', 'ELASTIC_RELEASE') | int}}"
1111
collections:
12-
- NETWAYS.elasticstack
12+
- netways.elasticstack
1313
tasks:
1414
- name: Include Elastic Repos
1515
include_role:

molecule/kibana_full_stack-oss/converge.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# https://github.com/ansible-community/molecule/issues/1567#issuecomment-436876722
66
- name: Converge
77
collections:
8-
- NETWAYS.elasticstack
8+
- netways.elasticstack
99
hosts: all
1010
vars:
1111
elastic_stack_full_stack: true

molecule/kibana_full_stack/converge.yml

+1-1
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
elastic_release: "{{ lookup('env', 'ELASTIC_RELEASE') | int}}"

molecule/logstash_default/converge.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
elastic_stack_full_stack: false
1010
elastic_release: "{{ lookup('env', 'ELASTIC_RELEASE') | int}}"
1111
collections:
12-
- NETWAYS.elasticstack
12+
- netways.elasticstack
1313
tasks:
1414
- name: Include Elastics repos role
1515
include_role:

molecule/logstash_full_stack-oss/converge.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
- name: Converge
1313
hosts: all
1414
collections:
15-
- NETWAYS.elasticstack
15+
- netways.elasticstack
1616
vars:
1717
elastic_stack_full_stack: true
1818
elastic_variant: oss

molecule/logstash_full_stack/converge.yml

+1-1
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/logstash_pipelines/converge.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
- name: Converge
88
hosts: all
99
collections:
10-
- NETWAYS.elasticstack
10+
- netways.elasticstack
1111
vars:
1212
logstash_enable: true
1313
logstash_pipelines:

molecule/logstash_run_logstash/converge.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
- name: Converge
88
hosts: all
99
collections:
10-
- NETWAYS.elasticstack
10+
- netways.elasticstack
1111
vars:
1212
logstash_enable: true
1313
logstash_deactivate_log_to_syslog: false

molecule/logstash_specific_version/converge.yml

+1-1
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
logstash_manage_logging: true
1212
logstash_logging_console: false

molecule/repos_default/converge.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
- name: Converge
33
hosts: all
44
collections:
5-
- NETWAYS.elasticstack
5+
- netways.elasticstack
66
vars:
77
elastic_rpm_workaround: true
88
elastic_stack_full_stack: false

molecule/repos_oss/converge.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
- name: Converge
55
hosts: all
66
collections:
7-
- NETWAYS.elasticstack
7+
- netways.elasticstack
88
vars:
99
elastic_variant: oss
1010
elastic_rpm_workaround: true

roles/logstash/templates/log4j2.properties.j2

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Managed by Ansible Role
2-
# https://github.com/NETWAYS/ansible-role-logstash
2+
# https://github.com/netways/ansible-role-logstash
33
#
44
# Logging to logfile: {% if logstash_logging_file | bool %}true{% else %}false{% endif %}
55

roles/logstash/templates/pipelines.yml.j2

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22

33
# Managed via Ansible role
4-
# https://github.com/NETWAYS/ansible-role-logstash
4+
# https://github.com/netways/ansible-role-logstash
55
{% if logstash_beats_input_congestion is defined %}
66
# global congestion threshold: {{ logstash_beats_input_congestion }}
77
{% endif %}
@@ -35,7 +35,7 @@
3535
{% if logstash_pipelines is defined %}
3636

3737
### Autoconfigured pipelines ###
38-
# See https://github.com/NETWAYS/ansible-role-logstash/blob/master/docs/pipelines.md
38+
# See https://github.com/netways/ansible-role-logstash/blob/master/docs/pipelines.md
3939
# for details
4040
# Hint: They can be mixed up with manual code. When source or Redis is missing it's
4141
# likely that there is code from another source in place.

0 commit comments

Comments
 (0)