Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Support HTTPS endpoints #1084

Merged
merged 6 commits into from
Sep 10, 2024
Merged

Commits on Sep 3, 2024

  1. feat: added tls support to cloud service broker app

    When running as an app in CF we can rely on the platform to handle TLS setup, but on a VM currently there is no way to have encrypted traffic.
    
    TPCF-26820
    ifindlay-cci committed Sep 3, 2024
    Configuration menu
    Copy the full SHA
    290446f View commit details
    Browse the repository at this point in the history
  2. ignore linting for test helper

    it is angry about  `.` imports. But we do not mind because this is not
    production code.
    nouseforaname committed Sep 3, 2024
    Configuration menu
    Copy the full SHA
    a4f7e83 View commit details
    Browse the repository at this point in the history

Commits on Sep 4, 2024

  1. Update internal/testdrive/broker_start.go

    Co-authored-by: Andrea Zucchini <[email protected]>
    nouseforaname and zucchinidev authored Sep 4, 2024
    Configuration menu
    Copy the full SHA
    e880496 View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2024

  1. Configuration menu
    Copy the full SHA
    25d14ba View commit details
    Browse the repository at this point in the history
  2. enable running tests against https broker via option

    currently the broker.client is not embedding http client. It never
    needed to because the broker was written as a CF app and therefore
    never had to consider handling self signed certs. But since we are
    changing towards supporting VM based deployment, we need to think
    about how our test client will handle self signed certs. This seems
    to be the path of least resistance, by embedding an http client in
    the broker client struct, we can rely on setting the embedded clients
    transport config to allow for "insecure" connecions.
    nouseforaname committed Sep 5, 2024
    Configuration menu
    Copy the full SHA
    172bcab View commit details
    Browse the repository at this point in the history

Commits on Sep 10, 2024

  1. Configuration menu
    Copy the full SHA
    6be6027 View commit details
    Browse the repository at this point in the history