-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: change references from dirien to pulumi (#23)
feat: change references from dirien to pulumi Signed-off-by: Engin Diri <[email protected]>
- Loading branch information
Showing
15 changed files
with
93 additions
and
39 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
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,25 @@ | ||
linters: | ||
enable: | ||
- deadcode | ||
- errcheck | ||
- goconst | ||
- gofmt | ||
- golint | ||
- gosec | ||
- govet | ||
- ineffassign | ||
- interfacer | ||
- lll | ||
- megacheck | ||
- misspell | ||
- nakedret | ||
- structcheck | ||
- unconvert | ||
- varcheck | ||
enable-all: false | ||
run: | ||
skip-files: | ||
- schema.go | ||
- pulumiManifest.go | ||
timeout: 20m | ||
|
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 |
---|---|---|
@@ -1,7 +1,16 @@ | ||
# Pulumi ESC Secret Store CSI Driver | ||
# Pulumi ESC Secret Store CSI Driver - 🔒 | ||
|
||
Pulumi ESC for the [Secrets Store CSI driver](https://github.com/kubernetes-sigs/secrets-store-csi-driver) will allow | ||
you to mount Pulumi ESC secrets directly into your Kubernetes pods while not using k8s-native secretes in your | ||
Kubernetes cluster. | ||
|
||
## Getting Started | ||
|
||
### Prerequisites | ||
|
||
- Kubernetes version >= 1.20 | ||
- [Tilt](https://docs.tilt.dev/) (for local development) | ||
|
||
### Deploy Secret Store CSI Driver using Helm | ||
|
||
Secrets Store CSI Driver allows users to customize their installation via Helm. | ||
|
@@ -21,7 +30,21 @@ namespace. | |
tilt up | ||
``` | ||
|
||
### Deploy Pulumi ESC Secret Store CSI Driver - production | ||
### Deploy Pulumi ESC Secret Store CSI Driver - Kubernetes | ||
|
||
See [helm/README.md](chart/README.md) for instructions on how to deploy the Pulumi ESC Secret Store CSI Driver using | ||
Helm. | ||
|
||
## License ⚖️ | ||
|
||
Apache License, Version 2.0 | ||
|
||
## Source Code | ||
|
||
* <https://github.com/pulumi/pulumi-esc-csi-provider.git> | ||
|
||
See [helm/README.md](chart/README.md) for instructions on how to deploy the Pulumi ESC Secret Store CSI Driver using Helm. | ||
## Maintainers | ||
|
||
| Name | Email | Url | | ||
| ---- | ------ | --- | | ||
| dirien | <[email protected]> | <https://pulumi.com> | |
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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
module github.com/dirien/pulumi-esc-csi-provider | ||
module github.com/pulumi/pulumi-esc-csi-provider | ||
|
||
go 1.23.1 | ||
|
||
|
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
//go:generate mockgen -destination=mock_$GOPACKAGE/mock_$GOFILE -source=$GOFILE | ||
package auth | ||
|
||
import ( | ||
|
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