Skip to content

Commit ae21a45

Browse files
revert host changes to most components
Co-authored-by: Pavel Busko <pavel.busko@sap.com>
1 parent dc2c812 commit ae21a45

File tree

16 files changed

+6
-34
lines changed

16 files changed

+6
-34
lines changed

jobs/loggr-syslog-agent-windows/monit

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
"AGENT_CERT_FILE_PATH" => "#{certs_dir}/syslog_agent.crt",
3333
"AGENT_KEY_FILE_PATH" => "#{certs_dir}/syslog_agent.key",
3434
"AGENT_CIPHER_SUITES" => p("tls.cipher_suites").split(":").join(","),
35-
"AGENT_HOST" => "#{p("host")}",
3635
"AGENT_PORT" => "#{p("port")}",
3736

3837
"DRAIN_SKIP_CERT_VERIFY" => "#{p("drain_skip_cert_verify")}",

jobs/loggr-syslog-agent-windows/spec

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,6 @@ properties:
3535
description: Whether metadata is included in structured data by default
3636
default: true
3737

38-
host:
39-
description: "Host the agent is serving gRPC via mTLS"
40-
default: "127.0.0.1"
4138
port:
4239
description: "Port the agent is serving gRPC via mTLS"
4340
default: 3458

jobs/loggr-syslog-agent/spec

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,6 @@ properties:
3232
binding_cache_override_url:
3333
description: URL to use if required to override the default bosh-dns binding cache address
3434

35-
host:
36-
description: "Host the agent is serving gRPC via mTLS"
37-
default: "127.0.0.1"
3835
port:
3936
description: "Port the agent is serving gRPC via mTLS"
4037
default: 3458

jobs/loggr-syslog-agent/templates/bpm.yml.erb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
"AGENT_CERT_FILE_PATH" => "#{certs_dir}/syslog_agent.crt",
2424
"AGENT_KEY_FILE_PATH" => "#{certs_dir}/syslog_agent.key",
2525
"AGENT_CIPHER_SUITES" => "#{p("tls.cipher_suites").split(":").join(",")}",
26-
"AGENT_HOST" => "#{p("host")}",
2726
"AGENT_PORT" => "#{p("port")}",
2827
"DRAIN_SKIP_CERT_VERIFY" => "#{p("drain_skip_cert_verify")}",
2928
"DEFAULT_DRAIN_METADATA" => "#{p("default_drain_metadata")}",

jobs/loggr-udp-forwarder/spec

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,6 @@ properties:
3333
description: |
3434
The gRPC port to forward the converted v2 envelopes to.
3535
default: 3458
36-
host:
37-
description: "Host the agent uses to listen for incoming v1 (dropsonde) envelopes via UDP"
38-
default: "127.0.0.1"
3936
udp_port:
4037
description: |
4138
The port to listen for incoming v1 (dropsonde) envelopes via UDP.

jobs/loggr-udp-forwarder/templates/bpm.yml.erb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
"LOGGREGATOR_AGENT_CERT_FILE_PATH" => "#{certs_dir}/loggregator_agent.crt",
1414
"LOGGREGATOR_AGENT_KEY_FILE_PATH" => "#{certs_dir}/loggregator_agent.key",
1515
"LOGGREGATOR_AGENT_ADDR" => "localhost:#{p('loggregator.ingress_port')}",
16-
"AGENT_HOST" => "#{p('host')}",
1716
"UDP_PORT" => "#{p('udp_port')}",
1817
"DEPLOYMENT" => "#{deployment}",
1918
"JOB" => "#{job_name}",

jobs/loggregator_agent/spec

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,6 @@ properties:
4444
grpc_port:
4545
description: "Port the agent is listening on to receive gRPC log envelopes"
4646
default: 3458
47-
host:
48-
description: "Host the agent is listening on to receive gRPC log envelopes"
49-
default: "127.0.0.1"
5047
zone:
5148
description: "Availability zone where this agent is running"
5249
default: ""

jobs/loggregator_agent/templates/bpm.yml.erb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ has_doppler = false
4444
"name" => "loggregator_agent",
4545
"executable" => "/var/vcap/packages/loggregator_agent/loggregator-agent",
4646
"env" => {
47-
"AGENT_HOST" => "#{p("host")}",
4847
"AGENT_PORT" => "#{p("grpc_port")}",
4948
"AGENT_CA_FILE" => "#{certs_dir}/loggregator_ca.crt",
5049
"AGENT_CERT_FILE" => "#{certs_dir}/loggregator_agent.crt",

jobs/loggregator_agent_windows/monit

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ end
4444
"__PIPE_SYSLOG_HOST" => p('syslog_daemon_config.address'),
4545
"__PIPE_SYSLOG_PORT" => p('syslog_daemon_config.port'),
4646
"__PIPE_SYSLOG_TRANSPORT" => p('syslog_daemon_config.transport'),
47-
"AGENT_HOST" => "#{p("host")}",
4847
"AGENT_PORT" => "#{p("grpc_port")}",
4948
"AGENT_CA_FILE" => "#{certs_dir}/loggregator_ca.crt",
5049
"AGENT_CERT_FILE" => "#{certs_dir}/loggregator_agent.crt",

jobs/loggregator_agent_windows/spec

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,6 @@ properties:
6666
grpc_port:
6767
description: "Port the agent is listening on to receive gRPC log envelopes"
6868
default: 3458
69-
host:
70-
description: "Host the agent is listening on to receive gRPC log envelopes"
71-
default: "127.0.0.1"
7269
zone:
7370
description: "Availability zone where this agent is running"
7471
default: ""

0 commit comments

Comments
 (0)