Skip to content

Commit 02c51cf

Browse files
committed
Remove unnecessary gitignore rule
1 parent b27cb52 commit 02c51cf

4 files changed

Lines changed: 55 additions & 10 deletions

File tree

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ ca.srl
1111
ansible/roles/hipache/templates/runnable*
1212
enviroments/**/k8/**/configMaps/*cert*
1313
environments/*/secrets/**/*
14-
environments/*/secrets/**/*
1514
*.retry
1615
*.tfstate*
1716
terraform/credentials.tfvars
Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
- set_fact:
3-
ca_data: "{{ lookup('file', '{{ domain }}/ca.pem') }}"
3+
ca_data: "{{ lookup('file', '{{ domains_root }}/{{ domain }}/ca.pem') }}"
44
- set_fact:
5-
cert_data: "{{ lookup('file', '{{ domain }}/cert.pem') }}"
5+
cert_data: "{{ lookup('file', '{{ domains_root }}/{{ domain }}/cert.pem') }}"
66
- set_fact:
7-
key_data: "{{ lookup('file', '{{ domain }}/key.pem') }}"
7+
key_data: "{{ lookup('file', '{{ domains_root }}/{{ domain }}/key.pem') }}"
88
- set_fact:
9-
chained_data: "{{ lookup('file', '{{ domain }}/chained.pem') }}"
9+
chained_data: "{{ lookup('file', '{{ domains_root }}/{{ domain }}/chained.pem') }}"
1010
- set_fact:
11-
dhparam_data: "{{ lookup('file', '{{ domain }}/dhparam.pem') }}"
11+
dhparam_data: "{{ lookup('file', '{{ domains_root }}/{{ domain }}/dhparam.pem') }}"
1212

1313
- name: create configMap folder
1414
file:
@@ -19,22 +19,22 @@
1919
tags: [ configure_proxy, configure_files ]
2020
template:
2121
src: certs.yml
22-
dest: "{{ config_maps_path }}/{{ name }}-certs.yml"
22+
dest: "{{ config_maps_path }}/{{ name }}-certs"
2323

2424
- name: create proxy template
2525
tags: [ configure_proxy, configure_files ]
2626
template:
2727
src: proxy-nginx.conf
28-
dest: "{{ config_maps_path }}/{{ name }}-base-config.yml"
28+
dest: "{{ config_maps_path }}/{{ name }}-base-config"
2929

3030
- name: create mixpanel template
3131
tags: [ configure_proxy, configure_files ]
3232
template:
3333
src: mixpanel.tmpl
34-
dest: "{{ config_maps_path }}/{{ name }}-mixpanel-config.yml"
34+
dest: "{{ config_maps_path }}/{{ name }}-mixpanel-config"
3535

3636
- name: put api template in place
3737
tags: [ configure_proxy, configure_files ]
3838
template:
3939
src: sites-enabled.tmpl
40-
dest: "{{ config_maps_path }}/{{ name }}-sites-enabled-config.yml"
40+
dest: "{{ config_maps_path }}/{{ name }}-sites-enabled-config"
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Secrets
2+
3+
This directory should have the following files:
4+
5+
```
6+
/docker-client
7+
id_rsa
8+
known_hosts
9+
/certs
10+
ca-key.pem
11+
ca.pem
12+
ca.srl
13+
cert.pem
14+
key.pem
15+
pass
16+
/domains
17+
/${DOMAIN}
18+
ca.pem
19+
cert.pem
20+
key.pem
21+
chained.pem
22+
dhparam.pem
23+
```
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Secrets
2+
3+
This directory should have the following files:
4+
5+
```
6+
/docker-client
7+
id_rsa
8+
known_hosts
9+
/certs
10+
ca-key.pem
11+
ca.pem
12+
ca.srl
13+
cert.pem
14+
key.pem
15+
pass
16+
/domains
17+
/${DOMAIN}
18+
ca.pem
19+
cert.pem
20+
key.pem
21+
chained.pem
22+
dhparam.pem
23+
```

0 commit comments

Comments
 (0)