|
CF Networking -- Seeking clarity on today's implementation
1. Yes - the source address observed by listeners accessed from a container will be a DEA address. 2. Yes - DEAs implement a default egress policy of deny; you must explicitly enable access to address
1. Yes - the source address observed by listeners accessed from a container will be a DEA address. 2. Yes - DEAs implement a default egress policy of deny; you must explicitly enable access to address
|
By
...
· #3173
·
|
|
CF Networking -- Seeking clarity on today's implementation
Just adding a couple of technical bits to Jason’s response. To be more explicit, NATS is a/topic based message bus. The DEAs do subscribe to a number of topics but routing isn’t one of them. Basically
Just adding a couple of technical bits to Jason’s response. To be more explicit, NATS is a/topic based message bus. The DEAs do subscribe to a number of topics but routing isn’t one of them. Basically
|
By
...
· #3158
·
|
|
Web sockets + Cloud Foundry
... or any other Cloud Foundry 2016 certified platform. You can find a list of them here: https://www.cloudfoundry.org/use/cloud-foundry-certified/ wrote:
... or any other Cloud Foundry 2016 certified platform. You can find a list of them here: https://www.cloudfoundry.org/use/cloud-foundry-certified/ wrote:
|
By
...
· #3134
·
|
|
CF Networking -- Seeking clarity on today's implementation
You have a lot of questions here and some of them may depend on how you’re deploying Cloud Foundry. I’ll add some answers inline. A container is created for each desired instance of an application and
You have a lot of questions here and some of them may depend on how you’re deploying Cloud Foundry. I’ll add some answers inline. A container is created for each desired instance of an application and
|
By
...
· #3121
·
|
|
Web sockets + Cloud Foundry
James Bayer posted about a fun experiment with web sockets a while back. Might be a good starting point: http://www.iamjambay.com/2013/12/send-interactive-commands-to-cloud.html You need to make sure
James Bayer posted about a fun experiment with web sockets a while back. Might be a good starting point: http://www.iamjambay.com/2013/12/send-interactive-commands-to-cloud.html You need to make sure
|
By
...
· #3093
·
|
|
Import large dataset to Postgres instance in CF
Regarding Nic's ssh comment, if you're running Diego, I'd recommend using the port forwarding feature instead of copying the data. It was actually one of the scenarios that drove the implementation of
Regarding Nic's ssh comment, if you're running Diego, I'd recommend using the port forwarding feature instead of copying the data. It was actually one of the scenarios that drove the implementation of
|
By
...
· #3073
·
|
|
Downloading Buildpack Bits from Cloud Foundry
The blob names in the store should match the buildpack key from the buildpacks table in the CCDB. (The key is basically the buildpack guid concatenated with the sha1 hash of the buildpack bits by an u
The blob names in the store should match the buildpack key from the buildpacks table in the CCDB. (The key is basically the buildpack guid concatenated with the sha1 hash of the buildpack bits by an u
|
By
...
· #2965
·
|
|
Downloading Buildpack Bits from Cloud Foundry
Sorry - misread the question. You're looking for the actual buildpacks instead of the droplets. You can construct the file names from the information in the admin buildpack table. I'll post details in
Sorry - misread the question. You're looking for the actual buildpacks instead of the droplets. You can construct the file names from the information in the admin buildpack table. I'll post details in
|
By
...
· #2964
·
|
|
Downloading Buildpack Bits from Cloud Foundry
If you're on a new enough level, you can try the droplet download endpoint [1]. [1]: https://apidocs.cloudfoundry.org/225/apps/downloads_the_staged_droplet_for_an_app.html wrote:
If you're on a new enough level, you can try the droplet download endpoint [1]. [1]: https://apidocs.cloudfoundry.org/225/apps/downloads_the_staged_droplet_for_an_app.html wrote:
|
By
...
· #2963
·
|
|
Cloud Foundry deploy on suse
wshd is simply reporting [1] the pivot_root [2] failure. It looks like you're getting an EINVAL from the call which implies warden is running in an unexpected environment. If I were to guess, I'd say
wshd is simply reporting [1] the pivot_root [2] failure. It looks like you're getting an EINVAL from the call which implies warden is running in an unexpected environment. If I were to guess, I'd say
|
By
...
· #2590
·
|
|
Diff between cf restart and cf restage
`restage` will stop your application, run the application bits through the staging process to create a new droplet, and then start the new droplet. It's a lot like `push` but without actually pushing
`restage` will stop your application, run the application bits through the staging process to create a new droplet, and then start the new droplet. It's a lot like `push` but without actually pushing
|
By
...
· #2578
·
|
|
How can i listen two or more port in an app?
With DEA's, you can't. With Diego, you can look at the new TCP routing support [1] if you want the port to be accessible to everyone, all the time, or ssh port forwarding [2] if you only want someone
With DEA's, you can't. With Diego, you can look at the new TCP routing support [1] if you want the port to be accessible to everyone, all the time, or ssh port forwarding [2] if you only want someone
|
By
...
· #2572
·
|
|
UAA branding and scope descriptions
No formal extension process currently exists to do what you're asking for. The topic has been raised at the runtime PMC as others have similar needs. It sounds like the identity team may have some pla
No formal extension process currently exists to do what you're asking for. The topic has been raised at the runtime PMC as others have similar needs. It sounds like the identity team may have some pla
|
By
...
· #2566
·
|
|
Does warden container/daemon allow swap?
It doesn't mean that the process *can't* swap but it does mean that when memory usage exceeds the limit, the kernel won't swap out any pages to avoid the oom killer. There were some discussions about
It doesn't mean that the process *can't* swap but it does mean that when memory usage exceeds the limit, the kernel won't swap out any pages to avoid the oom killer. There were some discussions about
|
By
...
· #2565
·
|
|
How Warden limit socket queue?
As a user, you can't. Even though somaxconn is associated with the network namespace, you need to be privileged (root) to change it. If you wanted a higher default across all containers, you could mod
As a user, you can't. Even though somaxconn is associated with the network namespace, you need to be privileged (root) to change it. If you wanted a higher default across all containers, you could mod
|
By
...
· #2561
·
|
|
Trouble enabling diego ssh in cf-release:222 diego:0.1437
I did the work on the cli plugin but not on the integration into the cli. Based on your first error, it looked like we were having a problem getting the one time code, not authenticating with the ssh
I did the work on the cli plugin but not on the integration into the cli. Based on your first error, it looked like we were having a problem getting the one time code, not authenticating with the ssh
|
By
...
· #2502
·
|
|
Trouble enabling diego ssh in cf-release:222 diego:0.1437
That's not the request that the plugin is making to get the token. We're using the API that was created for us [1]. If you use straight curl with something like this, what does the flow really look li
That's not the request that the plugin is making to get the token. We're using the API that was created for us [1]. If you use straight curl with something like this, what does the flow really look li
|
By
...
· #2498
·
|
|
Trouble enabling diego ssh in cf-release:222 diego:0.1437
Does /v2/info contain the `app_ssh_auth_client` key? If not, it should be set to the client ID of the ssh proxy. If it's not set, I think that's one of the symptom. https://github.com/cloudfoundry-inc
Does /v2/info contain the `app_ssh_auth_client` key? If not, it should be set to the client ID of the ssh proxy. If it's not set, I think that's one of the symptom. https://github.com/cloudfoundry-inc
|
By
...
· #2494
·
|
|
json data and the cli
Given the scope and cross cutting nature of the issue, I think it's something better handled by the CLI team via prioritized stories. Speaking from experience, large PRs and PRs that involve refactors
Given the scope and cross cutting nature of the issue, I think it's something better handled by the CLI team via prioritized stories. Speaking from experience, large PRs and PRs that involve refactors
|
By
...
· #2470
·
|
|
json data and the cli
There are a number of places in the cli where a user needs to provide a json payload to the cli. For example: create-service/update-service bind-service create-service-keys create-security-group/updat
There are a number of places in the cli where a user needs to provide a json payload to the cli. For example: create-service/update-service bind-service create-service-keys create-security-group/updat
|
By
...
· #2454
·
|