Skip to content

Commit

Permalink
Merge branch 'spiffe:main' into aws-iid-network-interface-order
Browse files Browse the repository at this point in the history
  • Loading branch information
Manbeardo authored Jul 26, 2024
2 parents 5326564 + 727094d commit 8902b39
Show file tree
Hide file tree
Showing 21 changed files with 694 additions and 205 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/depsreview.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ jobs:
- name: 'Checkout Repository'
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: 'Dependency Review'
uses: actions/dependency-review-action@72eb03d02c7872a771aacd928f3123ac62ad6d3a # v4.3.3
uses: actions/dependency-review-action@5a2ce3f5b92ee19cbb1541a4984c76d921601d7c # v4.3.4
2 changes: 1 addition & 1 deletion .github/workflows/nightly_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Build images
run: make images
- name: Log in to GHCR
uses: docker/login-action@0d4c9c5ea7693da7b068278f7b52bda2a190a446 # v3.2.0
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ jobs:
- name: Set up QEMU
uses: docker/setup-qemu-action@5927c834f5b4fdf503fca6f4c7eccda82949e1ee # v3.1.0
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@4fd812986e6c8c2a69e18311145f9371337f27d4 # v3.4.0
uses: docker/setup-buildx-action@aa33708b10e362ff993539393ff100fa93ed6a27 # v3.5.0
- name: Build images
run: make images-no-load
- name: Export images
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ jobs:
name: images
path: .
- name: Log in to GHCR
uses: docker/login-action@0d4c9c5ea7693da7b068278f7b52bda2a190a446 # v3.2.0
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand Down
4 changes: 2 additions & 2 deletions conf/agent/agent_full.conf
Original file line number Diff line number Diff line change
Expand Up @@ -447,10 +447,10 @@ plugins {
# available metrics collectors.
# telemetry {
# Prometheus {
# # host: Prometheus server host.
# # host: Prometheus exporter listen address.
# # host = ""

# # port: Prometheus server port.
# # port: Prometheus exporter listen port.
# port = 9988
# }

Expand Down
4 changes: 2 additions & 2 deletions conf/server/server_full.conf
Original file line number Diff line number Diff line change
Expand Up @@ -955,10 +955,10 @@ plugins {
# available metrics collectors.
# telemetry {
# Prometheus {
# # host: Prometheus server host.
# # host: Prometheus exporter listen address.
# # host = ""

# # port: Prometheus server port.
# # port: Prometheus exporter listen port.
# port = 9988
# }

Expand Down
8 changes: 4 additions & 4 deletions doc/telemetry/telemetry_config.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ You may use all, some, or none of the collectors. The following collectors suppo

### `Prometheus`

| Configuration | Type | Description |
|---------------|----------|------------------------|
| `host` | `string` | Prometheus server host |
| `port` | `int` | Prometheus server port |
| Configuration | Type | Description |
|---------------|----------|---------------------------|
| `host` | `string` | Prometheus exporter listen address |
| `port` | `int` | Prometheus exporter listen port |

### `DogStatsd`

Expand Down
48 changes: 24 additions & 24 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,23 @@ require (
cloud.google.com/go/kms v1.18.2
cloud.google.com/go/secretmanager v1.13.3
cloud.google.com/go/security v1.17.2
cloud.google.com/go/storage v1.42.0
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.12.0
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.6.0
cloud.google.com/go/storage v1.43.0
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.13.0
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.7.0
github.com/Azure/azure-sdk-for-go/sdk/keyvault/azkeys v0.10.0
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/compute/armcompute v1.0.0
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/network/armnetwork v1.1.0
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armresources v1.2.0
github.com/GoogleCloudPlatform/cloudsql-proxy v1.35.4
github.com/GoogleCloudPlatform/cloudsql-proxy v1.36.0
github.com/Microsoft/go-winio v0.6.2
github.com/andres-erbsen/clock v0.0.0-20160526145045-9e14626cd129
github.com/aws/aws-sdk-go-v2 v1.30.3
github.com/aws/aws-sdk-go-v2/config v1.27.18
github.com/aws/aws-sdk-go-v2/credentials v1.17.18
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.5
github.com/aws/aws-sdk-go-v2/feature/rds/auth v1.4.2
github.com/aws/aws-sdk-go-v2/service/acmpca v1.33.0
github.com/aws/aws-sdk-go-v2/service/ec2 v1.170.0
github.com/aws/aws-sdk-go-v2/service/acmpca v1.35.0
github.com/aws/aws-sdk-go-v2/service/ec2 v1.172.0
github.com/aws/aws-sdk-go-v2/service/iam v1.34.1
github.com/aws/aws-sdk-go-v2/service/kms v1.35.1
github.com/aws/aws-sdk-go-v2/service/organizations v1.30.2
Expand All @@ -34,7 +34,7 @@ require (
github.com/aws/smithy-go v1.20.3
github.com/blang/semver/v4 v4.0.0
github.com/cenkalti/backoff/v4 v4.3.0
github.com/docker/docker v27.0.3+incompatible
github.com/docker/docker v27.1.1+incompatible
github.com/envoyproxy/go-control-plane v0.12.0
github.com/fullsailor/pkcs7 v0.0.0-20190404230743-d7302db945fa
github.com/go-jose/go-jose/v4 v4.0.2
Expand All @@ -44,10 +44,10 @@ require (
github.com/gogo/status v1.1.1
github.com/google/btree v1.1.2
github.com/google/go-cmp v0.6.0
github.com/google/go-containerregistry v0.20.0
github.com/google/go-containerregistry v0.20.1
github.com/google/go-tpm v0.9.1
github.com/google/go-tpm-tools v0.4.4
github.com/googleapis/gax-go/v2 v2.12.5
github.com/googleapis/gax-go/v2 v2.13.0
github.com/gorilla/handlers v1.5.2
github.com/hashicorp/go-hclog v1.6.3
github.com/hashicorp/go-metrics v0.5.3
Expand All @@ -68,7 +68,7 @@ require (
github.com/shirou/gopsutil/v3 v3.24.5
github.com/sigstore/cosign/v2 v2.2.4
github.com/sigstore/rekor v1.3.6
github.com/sigstore/sigstore v1.8.6
github.com/sigstore/sigstore v1.8.7
github.com/sirupsen/logrus v1.9.3
github.com/spiffe/go-spiffe/v2 v2.3.0
github.com/spiffe/spire-api-sdk v1.2.5-0.20240627195926-b5ac064f580b
Expand All @@ -83,28 +83,28 @@ require (
golang.org/x/sync v0.7.0
golang.org/x/sys v0.22.0
golang.org/x/time v0.5.0
google.golang.org/api v0.188.0
google.golang.org/genproto/googleapis/rpc v0.0.0-20240708141625-4ad9e859172b
google.golang.org/api v0.189.0
google.golang.org/genproto/googleapis/rpc v0.0.0-20240722135656-d784300faade
google.golang.org/grpc v1.65.0
google.golang.org/protobuf v1.34.2
k8s.io/api v0.30.2
k8s.io/apimachinery v0.30.2
k8s.io/client-go v0.30.2
k8s.io/kube-aggregator v0.30.2
k8s.io/mount-utils v0.30.2
k8s.io/api v0.30.3
k8s.io/apimachinery v0.30.3
k8s.io/client-go v0.30.3
k8s.io/kube-aggregator v0.30.3
k8s.io/mount-utils v0.30.3
sigs.k8s.io/controller-runtime v0.18.4
)

require (
cloud.google.com/go v0.115.0 // indirect
cloud.google.com/go/auth v0.7.0 // indirect
cloud.google.com/go/auth/oauth2adapt v0.2.2 // indirect
cloud.google.com/go/compute/metadata v0.4.0 // indirect
cloud.google.com/go/auth v0.7.2 // indirect
cloud.google.com/go/auth/oauth2adapt v0.2.3 // indirect
cloud.google.com/go/compute/metadata v0.5.0 // indirect
cloud.google.com/go/longrunning v0.5.9 // indirect
filippo.io/edwards25519 v1.1.0 // indirect
github.com/AliyunContainerService/ack-ram-tool/pkg/credentials/alibabacloudsdkgo/helper v0.2.0 // indirect
github.com/Azure/azure-sdk-for-go v68.0.0+incompatible // indirect
github.com/Azure/azure-sdk-for-go/sdk/internal v1.9.0 // indirect
github.com/Azure/azure-sdk-for-go/sdk/internal v1.10.0 // indirect
github.com/Azure/azure-sdk-for-go/sdk/keyvault/internal v0.7.1 // indirect
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
github.com/Azure/go-autorest/autorest v0.11.29 // indirect
Expand Down Expand Up @@ -161,7 +161,7 @@ require (
github.com/cncf/xds/go v0.0.0-20240423153145-555b57ec207b // indirect
github.com/common-nighthawk/go-figure v0.0.0-20210622060536-734e95fb86be // indirect
github.com/containerd/stargz-snapshotter/estargz v0.14.3 // indirect
github.com/coreos/go-oidc/v3 v3.10.0 // indirect
github.com/coreos/go-oidc/v3 v3.11.0 // indirect
github.com/cyberphone/json-canonicalization v0.0.0-20231011164504-785e29786b46 // indirect
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect
Expand Down Expand Up @@ -338,8 +338,8 @@ require (
golang.org/x/oauth2 v0.21.0 // indirect
golang.org/x/term v0.22.0 // indirect
golang.org/x/text v0.16.0 // indirect
google.golang.org/genproto v0.0.0-20240708141625-4ad9e859172b // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20240701130421-f6361c86f094 // indirect
google.golang.org/genproto v0.0.0-20240722135656-d784300faade // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20240711142825-46eb208f015d // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
Expand Down
Loading

0 comments on commit 8902b39

Please sign in to comment.