go-cfclient
go-cfclient copied to clipboard
Golang client lib for Cloud Foundry
There's a serious bug in almost all files - here's an example: ``` res, err := c.DoRequest(r) if err != nil { return ServiceInstance{}, err } defer res.Body.Close() if res.StatusCode...
In our code, we're using the `ListServicesByQuery`, `ListServicePlansByQuery`, and `CreateServiceInstance` methods, which are implemented by calling CF API V2. Since we'll drop this API version soon, I'd like to know...
Hi, I just stumbled across the feature of cloud foundry to perform a [rolling restart](https://docs.cloudfoundry.org/devguide/deploy-apps/rolling-deploy.html#:~:text=guarantee%20zero%20downtime.-,Restart%20an%20App,-To%20restart%20your). Is there a way to execute this command with this lib? Best regards, Alex
I’m trying to download a droplet bits using `GetDropletBits` and I’m getting: ``` Error downloading droplet bits from blobstore: Get "": x509: certificate signed by unknown authority ``` I created...
Hi, Is it possible to restart only a single app instance, like with [restart-app-instance](https://cli.cloudfoundry.org/en-US/v6/restart-app-instance.html). Best regards, Alex
Perhaps look into moving to Github actions for builds
Hello community, can you please add support for cf7 labels ?
The [OSB specification 2.13](https://github.com/openservicebrokerapi/servicebroker/blob/master/spec.md#changes-since-v213) added support for asynchronous service binding, and associated last_operation. This was reflected in [capi release 1.62.0](https://github.com/cloudfoundry/capi-release/releases/tag/1.62.0) contributed by [sapi team](https://www.pivotaltracker.com/epic/show/3888232). See associated [design doc](https://docs.google.com/document/d/1qbQBZVRAmOotabW-oFuvuLqi0yo_w690lrWGpV_2LWU/edit#heading=h.2t922oal873c) which summarizes...
Hi Team, We are looking for Create/Push app feature support in the cfclient. Any plans of supporting it with an ETA. Does anyone has picked this up to proceed with....
I am fairly new to programming in Golang, so I am sorry if I am doing something wrong myself here, and I will try to describe this as concise as...