Skip to content

Commit

Permalink
feat: add artifacthub verify (#37)
Browse files Browse the repository at this point in the history
Signed-off-by: Engin Diri <[email protected]>
  • Loading branch information
dirien authored Jan 2, 2025
1 parent b106b40 commit a1b89cf
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
6 changes: 4 additions & 2 deletions Tiltfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,17 @@ helm_remote('secrets-store-csi-driver',


docker_build(
'ghcr.io/pulumi/secrets-store-csi-driver-provider-pulumi-esc',
'ghcr.io/pulumi/pulumi-esc-csi-provider',
context='.',
dockerfile='./Dockerfile.tilt',
live_update=[
sync('./internal/', '/main.go'),
],
)

k8s_yaml(helm('./helm'))
k8s_yaml(helm('./chart/pulumi-esc-csi-provider'))
#k8s_yaml('./deployment/pulumi-esc-csi-provider.yaml')


k8s_yaml(
listdir('examples')
Expand Down
5 changes: 5 additions & 0 deletions artifacthub-repo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# ID is for the OCI Image
repositoryID: eeb5f23d-ee07-49b2-b798-76f21c7b7b35
owners:
- name: dirien
email: [email protected]
2 changes: 1 addition & 1 deletion deployment/pulumi-esc-csi-provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ spec:

containers:
- name: secrets-store-csi-driver-provider-pulumi-esc
image: "ghcr.io/pulumi/pulumi-esc-csi-provider:0.1.0"
image: ghcr.io/pulumi/pulumi-esc-csi-provider
imagePullPolicy: Always
resources:
{}
Expand Down
8 changes: 4 additions & 4 deletions examples/secretproviderclass.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ spec:
parameters:
apiUrl: https://api.pulumi.com/api/esc
organization: dirien
project: voting-app
environment: db
project: esc-secrets-store-csi-driver-demo
environment: csi-secrets-store-app
authSecretName: pulumi-secret-provider-auth-credentials
authSecretNamespace: default
secrets: |
- secretPath: "/"
fileName: "replicas"
secretKey: postgres.replicas
fileName: "hello"
secretKey: "app.hello"

0 comments on commit a1b89cf

Please sign in to comment.