Questions tagged [pivotal-web-services]

92 questions
0
votes
0 answers

Clone the request to a different Application in pcf

I have a requirement of replicating the same traffic that was received to a production system to a pilot project(same code deployed as a diff app with minimal changes). Not sure how to do it. Can you please help me out. App1 -> Production…
SAS DEV
  • 70
  • 3
0
votes
1 answer

How to retrieve heapdump in PCF using SMB

I need to -XXHeapdumoOutofmemory and -XXHeapdumoFilepath option in PCF manifest yml to create heapdump on OutOfMemory . I understand I can use SMB or NFS in vm args but how to retrieve the heapdump file when app goes OutOfMemory and not…
0
votes
1 answer

How spring boot actuator heapdump behave in cloudfoundry

I am using cloudfoundry with multiple instances. I am trying to generate heapdump using /actuator endpoint of spring. My doubt is in case of cloudfoundry env where at a time 2 instances running , for which instance it will generate the heapdump. How…
0
votes
1 answer

HTTP requests between apps on different PCF domains

I currently have a node server deployed in PCF that periodically makes GET requests to other applications in PCF. Some of the applications are in the same domain, and those GET requests are working; however, when I make requests to apps in a…
Abe
  • 11
  • 1
0
votes
2 answers

Why .isNotNull(); assertions fails even though I have a controller class?

I am new to Spring Boot and testing. I am currently studying from baeldung's tutorial (https://spring.io/guides/gs/testing-web/) and I bumped into this error. In fact, it passes when I use isNull() method. But I don't understand this because my…
Burakhan Aksoy
  • 319
  • 3
  • 14
0
votes
1 answer

Unable to create organization and space in PCF using CLI

I have created the PCF account in run.pivotal.io platform but not able to create org and space in UI as PCF is not allowing new account and showing the message "We will no longer be accepting any new PWS account sign-ups after September 17, 2020" I…
0
votes
1 answer

Can we change/modify the environment in PCF (Pivotal Cloud Foundy) at Runtime?

We use Pivotal Cloud Foundry's YML file to set up the environment. Everything is fine. According to DEVOPS if we have to modify/create an environment variable, we have to modify YML and push the app again. I am wondering if it is possible to…
0
votes
1 answer

My custom domain is redirecting to appname.cfapps.io but after redirecting URL is changing to appname.cfapps.io instead of my custom domain

I have a project deployed in cloud foundry(Pivotal Web Services). It has given domain name as appname.cfapps.io. I want to change the cloud foundry URL to my custom domain. So i registered a domain in namecheap.com. Then added my site in cloudfare…
0
votes
0 answers

Why PCF Task Instance is not performing like PCF Web Instance. PCF Task App instance is terminating while processing large file

We are creating file processing service using spring boot. We are getting XML file as Clob from DB and converting it to String( We will then unmarshall String to JAXBElement for processing). Since it is file processing service our design for this…
0
votes
1 answer

Is pivotal cloud foundry is support to windows 7 32 bit?

I am new to cloud deployment,i started to learn it so i tried to install PCF in machine(windows 7 32bit) but i can get pcf(pivotal cloud foundry)windows 64 only,i cannot get the windows 32 bit version. Is pivotal cloud foundry is not support to…
Ramesh C
  • 83
  • 1
  • 10
0
votes
1 answer

Restrict insecure web socket protocol connections in PCF

We are hosting an application in the preprod azure PCF environment which exposes websocket endpoints for client devices to connect to. Is there a prescribed methodology to secure the said websocket endpoint using TLS/SSL when hosted on PCF and…
0
votes
1 answer

PCF: How to find the list of all the spaces where you have Developer privileges

If you are not an admin in Pivotal Cloud Foundry, how will you find or list all the orgs/spaces where you have developer privileges? Is there a command or menu to get that, instead of going into each space and verifying it?
Spear A1
  • 525
  • 1
  • 7
  • 20
0
votes
1 answer

Cloud Foundry css file returns 502 Bad Gateway: Registered endpoint failed to handle the request

I pushed my spring boot app with VUE frontend to Cloud Foundry. When I send request to static file (css/img/js) such as https://bd-contacts-gateway.cfapps.io/js/chunk-vendors.8b8c1d1d.js I get 502 Bad Gateway: Registered endpoint failed to handle…
0
votes
1 answer

No suitable ServiceConnectorCreator

I am trying to push a spring application to PCF. In doing so, I get the following error: The user provided services exist. Error creating bean with name 'dataSourceNWTC' defined in class path resource [com/*//****/*//config/CloudConfig.class]:…
0
votes
0 answers

Springboot 405 Method Not Allowed in Pivotal Web Services/Cloud Foundry but working in local docker

I have created REST API application in SpringBoot which has GET and POST method pointing to the same URL. I have created springboot application and deployed in docker container in my local machine. When I try to access this application, I am able to…