forked from external-secrets/external-secrets
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from Workable/upgrade
Upgrade
- Loading branch information
Showing
161 changed files
with
12,410 additions
and
1,444 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
## Problem Statement | ||
|
||
What is the problem you're trying to solve? | ||
|
||
## Related Issue | ||
|
||
Fixes #... | ||
|
||
## Proposed Changes | ||
|
||
How do you like to solve the issue and why? | ||
|
||
## Checklist | ||
|
||
- [ ] I have read the [contribution guidelines](https://external-secrets.io/latest/contributing/process/#submitting-a-pull-request) | ||
- [ ] All commits are signed with `git commit --signoff` | ||
- [ ] My changes have reasonable test coverage | ||
- [ ] All tests pass with `make test` | ||
- [ ] I ensured my PR is ready for review with `make reviewable` |
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 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 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,9 +43,25 @@ jobs: | |
if [[ -n "$changed" ]]; then | ||
echo "::set-output name=changed::true" | ||
fi | ||
- name: Install chart unittest | ||
run: | | ||
helm env | ||
helm plugin install https://github.com/helm-unittest/helm-unittest | ||
- name: Run chart-testing (lint) | ||
run: ct lint --config=.github/ci/ct.yaml | ||
|
||
- name: Create kind cluster | ||
uses: helm/[email protected] | ||
if: steps.list-changed.outputs.changed == 'true' | ||
|
||
- name: Run chart-testing (install) | ||
run: ct install --config=.github/ci/ct.yaml --charts deploy/charts/external-secrets | ||
if: steps.list-changed.outputs.changed == 'true' | ||
|
||
- name: Run unitests | ||
if: steps.list-changed.outputs.changed == 'true' | ||
run: make helm.test | ||
|
||
release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
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 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 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 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 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 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
23 changes: 23 additions & 0 deletions
23
apis/externalsecrets/v1beta1/secretstore_keepersecurity_types.go
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/* | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package v1beta1 | ||
|
||
import smmeta "github.com/external-secrets/external-secrets/apis/meta/v1" | ||
|
||
// KeeperSecurityProvider Configures a store to sync secrets using Keeper Security. | ||
type KeeperSecurityProvider struct { | ||
Auth smmeta.SecretKeySelector `json:"authRef"` | ||
FolderID string `json:"folderID"` | ||
} |
47 changes: 47 additions & 0 deletions
47
apis/externalsecrets/v1beta1/secretstore_scaleway_types.go
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package v1beta1 | ||
|
||
import esmeta "github.com/external-secrets/external-secrets/apis/meta/v1" | ||
|
||
type ScalewayProviderSecretRef struct { | ||
|
||
// Value can be specified directly to set a value without using a secret. | ||
// +optional | ||
Value string `json:"value,omitempty"` | ||
|
||
// SecretRef references a key in a secret that will be used as value. | ||
// +optional | ||
SecretRef *esmeta.SecretKeySelector `json:"secretRef,omitempty"` | ||
} | ||
|
||
type ScalewayProvider struct { | ||
|
||
// APIURL is the url of the api to use. Defaults to https://api.scaleway.com | ||
// +optional | ||
APIURL string `json:"apiUrl,omitempty"` | ||
|
||
// Region where your secrets are located: https://developers.scaleway.com/en/quickstart/#region-and-zone | ||
Region string `json:"region"` | ||
|
||
// ProjectID is the id of your project, which you can find in the console: https://console.scaleway.com/project/settings | ||
ProjectID string `json:"projectId"` | ||
|
||
// AccessKey is the non-secret part of the api key. | ||
AccessKey *ScalewayProviderSecretRef `json:"accessKey"` | ||
|
||
// SecretKey is the non-secret part of the api key. | ||
SecretKey *ScalewayProviderSecretRef `json:"secretKey"` | ||
} |
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
Oops, something went wrong.