From f85c84133c2f8d6aec3c707cfb92cb03db543bd6 Mon Sep 17 00:00:00 2001 From: Michael Polenchuk Date: Fri, 26 May 2017 12:12:15 +0400 Subject: [mcp] Replace reclass system models with submodule Change-Id: Id693f7b0f3542d605b0f71601f3bd21eb882c7ba Signed-off-by: Michael Polenchuk --- .../haproxy/proxy/listen/oss/devops_portal.yml | 37 --------------------- .../haproxy/proxy/listen/oss/elasticsearch.yml | 38 ---------------------- .../system/haproxy/proxy/listen/oss/postgresql.yml | 32 ------------------ .../system/haproxy/proxy/listen/oss/pushkin.yml | 37 --------------------- .../system/haproxy/proxy/listen/oss/rundeck.yml | 37 --------------------- .../haproxy/proxy/listen/oss/security_monkey.yml | 37 --------------------- 6 files changed, 218 deletions(-) delete mode 100644 mcp/reclass/classes/system/haproxy/proxy/listen/oss/devops_portal.yml delete mode 100644 mcp/reclass/classes/system/haproxy/proxy/listen/oss/elasticsearch.yml delete mode 100644 mcp/reclass/classes/system/haproxy/proxy/listen/oss/postgresql.yml delete mode 100644 mcp/reclass/classes/system/haproxy/proxy/listen/oss/pushkin.yml delete mode 100644 mcp/reclass/classes/system/haproxy/proxy/listen/oss/rundeck.yml delete mode 100644 mcp/reclass/classes/system/haproxy/proxy/listen/oss/security_monkey.yml (limited to 'mcp/reclass/classes/system/haproxy/proxy/listen/oss') diff --git a/mcp/reclass/classes/system/haproxy/proxy/listen/oss/devops_portal.yml b/mcp/reclass/classes/system/haproxy/proxy/listen/oss/devops_portal.yml deleted file mode 100644 index e5c25cfbd..000000000 --- a/mcp/reclass/classes/system/haproxy/proxy/listen/oss/devops_portal.yml +++ /dev/null @@ -1,37 +0,0 @@ -parameters: - _param: - haproxy_devops_portal_bind_host: ${_param:haproxy_bind_address} - haproxy_devops_portal_bind_port: 8800 - haproxy_devops_portal_ssl: - enabled: false - haproxy: - proxy: - listen: - devops_portal: - mode: http - options: - - forwardfor - - httpchk - - httpclose - - httplog - balance: source - http_request: - - action: "add-header X-Forwarded-Proto https" - condition: "if { ssl_fc }" - binds: - - address: ${_param:haproxy_devops_portal_bind_host} - port: ${_param:haproxy_devops_portal_bind_port} - ssl: ${_param:haproxy_devops_portal_ssl} - servers: - - name: ${_param:cluster_node01_name} - host: ${_param:cluster_node01_address} - port: 18800 - params: check - - name: ${_param:cluster_node02_name} - host: ${_param:cluster_node02_address} - port: 18800 - params: backup check - - name: ${_param:cluster_node03_name} - host: ${_param:cluster_node03_address} - port: 18800 - params: backup check diff --git a/mcp/reclass/classes/system/haproxy/proxy/listen/oss/elasticsearch.yml b/mcp/reclass/classes/system/haproxy/proxy/listen/oss/elasticsearch.yml deleted file mode 100644 index 2f5d1ee40..000000000 --- a/mcp/reclass/classes/system/haproxy/proxy/listen/oss/elasticsearch.yml +++ /dev/null @@ -1,38 +0,0 @@ -parameters: - _param: - haproxy_elasticsearch_bind_host: ${_param:haproxy_bind_address} - haproxy_elasticsearch_bind_port: 9200 - haproxy_elasticsearch_exposed_port: 19200 - haproxy_elasticsearch_ssl: - enabled: false - haproxy: - proxy: - listen: - elasticsearch: - mode: http - options: - - forwardfor - - httpchk - - httpclose - - httplog - balance: source - http_request: - - action: "add-header X-Forwarded-Proto https" - condition: "if { ssl_fc }" - binds: - - address: ${_param:haproxy_elasticsearch_bind_host} - port: ${_param:haproxy_elasticsearch_bind_port} - ssl: ${_param:haproxy_elasticsearch_ssl} - servers: - - name: ${_param:cluster_node01_name} - host: ${_param:cluster_node01_address} - port: ${_param:haproxy_elasticsearch_exposed_port} - params: check - - name: ${_param:cluster_node02_name} - host: ${_param:cluster_node02_address} - port: ${_param:haproxy_elasticsearch_exposed_port} - params: backup check - - name: ${_param:cluster_node03_name} - host: ${_param:cluster_node03_address} - port: ${_param:haproxy_elasticsearch_exposed_port} - params: backup check diff --git a/mcp/reclass/classes/system/haproxy/proxy/listen/oss/postgresql.yml b/mcp/reclass/classes/system/haproxy/proxy/listen/oss/postgresql.yml deleted file mode 100644 index 1bc1f44c9..000000000 --- a/mcp/reclass/classes/system/haproxy/proxy/listen/oss/postgresql.yml +++ /dev/null @@ -1,32 +0,0 @@ -parameters: - _param: - haproxy_postgresql_bind_host: ${_param:haproxy_bind_address} - haproxy_postgresql_bind_port: 5432 - haproxy_postgresql_exposed_port: 15432 - haproxy_postgresql_ssl: - enabled: false - haproxy: - proxy: - listen: - postgresql: - mode: tcp - balance: source - options: - - tcp-check - binds: - - address: ${_param:haproxy_postgresql_bind_host} - port: ${_param:haproxy_postgresql_bind_port} - ssl: ${_param:haproxy_postgresql_ssl} - servers: - - name: ${_param:cluster_node01_name} - host: ${_param:cluster_node01_address} - port: ${_param:haproxy_postgresql_exposed_port} - params: check port ${_param:haproxy_postgresql_exposed_port} - - name: ${_param:cluster_node02_name} - host: ${_param:cluster_node02_address} - port: ${_param:haproxy_postgresql_exposed_port} - params: backup check port ${_param:haproxy_postgresql_exposed_port} - - name: ${_param:cluster_node03_name} - host: ${_param:cluster_node03_address} - port: ${_param:haproxy_postgresql_exposed_port} - params: backup check port ${_param:haproxy_postgresql_exposed_port} diff --git a/mcp/reclass/classes/system/haproxy/proxy/listen/oss/pushkin.yml b/mcp/reclass/classes/system/haproxy/proxy/listen/oss/pushkin.yml deleted file mode 100644 index db33352ca..000000000 --- a/mcp/reclass/classes/system/haproxy/proxy/listen/oss/pushkin.yml +++ /dev/null @@ -1,37 +0,0 @@ -parameters: - _param: - haproxy_pushkin_bind_host: ${_param:haproxy_bind_address} - haproxy_pushkin_bind_port: 8887 - haproxy_pushkin_exposed_port: 18887 - haproxy_pushkin_ssl: - enabled: false - haproxy: - proxy: - listen: - pushkin: - mode: http - options: - - httpchk GET /apps - balance: source - http_request: - - action: "add-header X-Forwarded-Proto https" - condition: "if { ssl_fc }" - sticks: - - http-check expect status 200 - binds: - - address: ${_param:haproxy_pushkin_bind_host} - port: ${_param:haproxy_pushkin_bind_port} - ssl: ${_param:haproxy_pushkin_ssl} - servers: - - name: ${_param:cluster_node01_name} - host: ${_param:cluster_node01_address} - port: ${_param:haproxy_pushkin_exposed_port} - params: check - - name: ${_param:cluster_node02_name} - host: ${_param:cluster_node02_address} - port: ${_param:haproxy_pushkin_exposed_port} - params: backup check - - name: ${_param:cluster_node03_name} - host: ${_param:cluster_node03_address} - port: ${_param:haproxy_pushkin_exposed_port} - params: backup check diff --git a/mcp/reclass/classes/system/haproxy/proxy/listen/oss/rundeck.yml b/mcp/reclass/classes/system/haproxy/proxy/listen/oss/rundeck.yml deleted file mode 100644 index fbabb381d..000000000 --- a/mcp/reclass/classes/system/haproxy/proxy/listen/oss/rundeck.yml +++ /dev/null @@ -1,37 +0,0 @@ -parameters: - _param: - haproxy_rundeck_bind_host: ${_param:haproxy_bind_address} - haproxy_rundeck_bind_port: 4440 - haproxy_rundeck_ssl: - enabled: false - haproxy: - proxy: - listen: - rundeck: - mode: http - options: - - forwardfor - - httpchk - - httpclose - - httplog - balance: source - http_request: - - action: "add-header X-Forwarded-Proto https" - condition: "if { ssl_fc }" - binds: - - address: ${_param:haproxy_rundeck_bind_host} - port: ${_param:haproxy_rundeck_bind_port} - ssl: ${_param:haproxy_rundeck_ssl} - servers: - - name: ${_param:cluster_node01_name} - host: ${_param:cluster_node01_address} - port: 14440 - params: check - - name: ${_param:cluster_node02_name} - host: ${_param:cluster_node02_address} - port: 14440 - params: backup check - - name: ${_param:cluster_node03_name} - host: ${_param:cluster_node03_address} - port: 14440 - params: backup check diff --git a/mcp/reclass/classes/system/haproxy/proxy/listen/oss/security_monkey.yml b/mcp/reclass/classes/system/haproxy/proxy/listen/oss/security_monkey.yml deleted file mode 100644 index 549869996..000000000 --- a/mcp/reclass/classes/system/haproxy/proxy/listen/oss/security_monkey.yml +++ /dev/null @@ -1,37 +0,0 @@ -parameters: - _param: - haproxy_security_monkey_bind_host: ${_param:haproxy_bind_address} - haproxy_security_monkey_bind_port: 5001 - haproxy_security_monkey_exposed_port: 15001 - haproxy_security_monkey_ssl: - enabled: false - haproxy: - proxy: - listen: - security_monkey: - mode: http - options: - - httpchk GET / - balance: source - http_request: - - action: "add-header X-Forwarded-Proto https" - condition: "if { ssl_fc }" - sticks: - - http-check expect status 404 - binds: - - address: ${_param:haproxy_security_monkey_bind_host} - port: ${_param:haproxy_security_monkey_bind_port} - ssl: ${_param:haproxy_security_monkey_ssl} - servers: - - name: ${_param:cluster_node01_name} - host: ${_param:cluster_node01_address} - port: ${_param:haproxy_security_monkey_exposed_port} - params: check - - name: ${_param:cluster_node02_name} - host: ${_param:cluster_node02_address} - port: ${_param:haproxy_security_monkey_exposed_port} - params: backup check - - name: ${_param:cluster_node03_name} - host: ${_param:cluster_node03_address} - port: ${_param:haproxy_security_monkey_exposed_port} - params: backup check -- cgit 1.2.3-korg