-
Notifications
You must be signed in to change notification settings - Fork 0
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
Add cofidectl-test-plugin and a CI test that exercises it #79
Open
markgoddard
wants to merge
18
commits into
issues/56
Choose a base branch
from
issues/4
base: issues/56
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This provides a cleaner separation between the different plugin types now that we have multiple types of plugins (since adding provision plugins).
This gRPC plugin implements data source and provision plugins using the default local and spire-helm plugins respectively. It allows for integration testing of the gRPC plugin mechanism. Fixes: #4
markgoddard
force-pushed
the
issues/4
branch
from
December 11, 2024 17:58
d11bde3
to
b5fa46a
Compare
markgoddard
force-pushed
the
issues/4
branch
from
December 11, 2024 19:26
b5fa46a
to
fc6eff1
Compare
jsnctl
reviewed
Dec 12, 2024
Bumps [github.com/spiffe/spire-api-sdk](https://github.com/spiffe/spire-api-sdk) from 1.11.0 to 1.11.1. - [Commits](spiffe/spire-api-sdk@v1.11.0...v1.11.1) --- updated-dependencies: - dependency-name: github.com/spiffe/spire-api-sdk dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
Bumps [buf.build/go/protoyaml](https://github.com/bufbuild/protoyaml-go) from 0.2.0 to 0.3.0. - [Release notes](https://github.com/bufbuild/protoyaml-go/releases) - [Commits](bufbuild/protoyaml-go@v0.2.0...v0.3.0) --- updated-dependencies: - dependency-name: buf.build/go/protoyaml dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
…piffe/spire-api-sdk-1.11.1 Bump github.com/spiffe/spire-api-sdk from 1.11.0 to 1.11.1
…/protoyaml-0.3.0 Bump buf.build/go/protoyaml from 0.2.0 to 0.3.0
Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.68.1 to 1.69.0. - [Release notes](https://github.com/grpc/grpc-go/releases) - [Commits](grpc/grpc-go@v1.68.1...v1.69.0) --- updated-dependencies: - dependency-name: google.golang.org/grpc dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
…g.org/grpc-1.69.0 Bump google.golang.org/grpc from 1.68.1 to 1.69.0
Bumps [k8s.io/client-go](https://github.com/kubernetes/client-go) from 0.31.3 to 0.32.0. - [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md) - [Commits](kubernetes/client-go@v0.31.3...v0.32.0) --- updated-dependencies: - dependency-name: k8s.io/client-go dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
This is the result of 'go mod tidy' after bumping k8s client-go to 0.32.0.
…t-go-0.32.0 Bump k8s.io/client-go from 0.31.3 to 0.32.0
This works better with 'go mod tidy' and avoids it creating new require sections.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Support specifying data source and provision plugins in init command
Refactor data source plugin into a datasource package
This provides a cleaner separation between the different plugin types
now that we have multiple types of plugins (since adding provision
plugins).
Add cofidectl-test-plugin
This gRPC plugin implements data source and provision plugins using the
default local and spire-helm plugins respectively.
It allows for integration testing of the gRPC plugin mechanism.
Add a CI test that uses cofidectl-test-plugin in the federation scenario
Fixes: #4