You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"instance_address": "10.255.116.6", <------ The overlay IP address of this app instance, let's call this the OVERLAY_IP
@@ -132,18 +138,19 @@ to.
132
138
}
133
139
```
134
140
1. Let's define all of these values.
135
-
* 👇 These are important for this module 👇
141
+
* 👇 These are important for this module 👇
136
142
***DIEGO_CELL_IP** - The cell's IP address where this app instance is running, also sometimes called the host IP.
137
143
***CONTAINER_APP_PORT** - The port the app is listening on inside of its container. 8080 is the default value.
138
-
* **DIEGO_CELL_APP_PORT** - The port on the Diego Cell where traffic to your app is sent to before it is forwarded to the overlay address and the container_port.
144
+
***DIEGO_CELL_APP_PORT** - The port on the Diego Cell where traffic to your app is sent to before it is forwarded to the overlay address and the container_port. By default this is 0 so that no port is exposed that sends traffic to the non-encrypted container port.
139
145
***CONTAINER_ENVOY_PORT** - The port inside of the app container that envoy is listening on for HTTPS traffic. This is the default value (currently unchangeable).
140
146
***DIEGO_CELL_ENVOY_PORT** - The port on the Diego Cell where traffic to your app's envoy sidecar is sent to before it is forwarded to the overlay address and the container_tls_proxy_port.
141
147
* 👇 These are NOT important for this module 👇
142
148
***CONTAINER_SSH_PORT** - The port exposed on the app container for sshing onto the app container
143
-
***DIEGO_CELL_SSH_PORT** - The port on the Diego Cell where ssh traffic to your app container is sent to before it is forwarded to the overlay address and the ssh container_port.
149
+
***DIEGO_CELL_SSH_PORT** - The port on the Diego Cell where ssh traffic to your app container is sent to before it is forwarded to the overlay address and the ssh container_port. By default this is 0 so that no port is exposed that sends traffic to the non-encrypted container port.
144
150
***CONTAINER_ENVOY_SSH_PORT** - The ssh port inside of the app container that envoy is listening on for ssh traffic. This is the default value (currently unchangeable).
145
151
***DIEGO_CELL_ENVOY_SSH_PORT** - The port on the Diego Cell where ssh traffic to your app's envoy sidecar is sent to before it is forwarded to the overlay address and the ssh container_tls_proxy_port.
146
152
***OVERLAY_IP** - The overlay IP address of this app instance.
153
+
***FOR_C2C** - This entry is used for Container to Container networking. See [this doc](https://docs.cloudfoundry.org/concepts/understand-cf-networking.html#securing-container-to-container-traffic) for more information.
147
154
148
155
1. Use the cfdot CLI to query BBS for desiredLRPs.
0 commit comments