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(LbTrafficExtension): Add LBTrafficExtension metadata support #13549

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

Yavis
Copy link

@Yavis Yavis commented Apr 4, 2025

The GCP LbTrafficExtension supports to give an object of metadata on setup. This behaviour shall be added with this change.

You can setup an loadbalancer traffic extension with a traffic.yml like this:

name: queueit-traffic-extension
forwardingRules:
  - https://www.googleapis.com/compute/v1/projects/[PROJECT]/regions/global/forwardingRules/[GCP_FORWARD_RULE]
loadBalancingScheme: EXTERNAL_MANAGED
extensionChains:
  - name: "chain1"
    matchCondition:
      celExpression: 'request.host = "example.com"'
    extensions:
      - name: 'cloud-connector'
        authority: [AUTHORITY]
        service: https://www.googleapis.com/compute/v1/projects/[PROJECT]/regions/global/backendServices/[BACKEND_SERVICE]
        failOpen: true
        timeout: 1s
        supportedEvents:
          - REQUEST_HEADERS
          - REQUEST_BODY
          - RESPONSE_HEADERS
metadata: {"customerId": "test"}

Which will be added to metadata in the traffic service extension. The metadata object need to be a JSON object to be valid. Afterwards the command:

$ gcloud service-extensions lb-traffic-extensions import test-traffic-extension --source=traffic.yaml --location=global

will successfully create an extension including the metadata.

Release Note Template for Downstream PRs (will be copied)

See Write release notes for guidance.

networkservices: added `metadata` field to `google_networkservices_lbtrafficextension` resource

The GCP LbTrafficExtension supports to give an object of metadata on setup.
This behaviour shall be added with this change.

You can setup an loadbalancer traffic extension with a `traffic.yml` like this:
```yaml
name: queueit-traffic-extension
forwardingRules:
  - https://www.googleapis.com/compute/v1/projects/[PROJECT]/regions/global/forwardingRules/[GCP_FORWARD_RULE]
loadBalancingScheme: EXTERNAL_MANAGED
extensionChains:
  - name: "chain1"
    matchCondition:
      celExpression: 'request.host = 'example.com'
    extensions:
      - name: 'cloud-connector'
        authority: [AUTHORITY]
        service: https://www.googleapis.com/compute/v1/projects/[PROJECT]/regions/global/backendServices/[BACKEND_SERVICE]
        failOpen: true
        timeout: 1s
        supportedEvents:
          - REQUEST_HEADERS
          - REQUEST_BODY
          - RESPONSE_HEADERS
metadata: {"customerId": "test"}
```

Which will be added to metadata in the traffic service extension. The metadata object need to be a JSON object to be valid. Afterwards the command:

```bash
$ gcloud service-extensions lb-traffic-extensions import test-traffic-extension --source=traffic.yaml --location=global
```

will successfully create an extension including the metadata.
Copy link

github-actions bot commented Apr 4, 2025

Hello! I am a robot. Tests will require approval from a repository maintainer to run. Googlers: see go/terraform-auto-test-runs to set up automatic test runs.

@roaks3, a repository maintainer, has been assigned to review your changes. If you have not received review feedback within 2 business days, please leave a comment on this PR asking them to take a look.

You can help make sure that review is quick by doing a self-review and by running impacted tests locally.

@github-actions github-actions bot requested a review from roaks3 April 4, 2025 13:54
@Yavis Yavis marked this pull request as draft April 4, 2025 13:54
@modular-magician modular-magician added the awaiting-approval Pull requests that need reviewer's approval to run presubmit tests label Apr 4, 2025
@Yavis Yavis marked this pull request as ready for review April 4, 2025 14:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
awaiting-approval Pull requests that need reviewer's approval to run presubmit tests
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants