Questions tagged [sealedsecret]

13 questions
3
votes
1 answer

ArgoCD with Sealed Secrets and Kustomize

I am trying to configure Bitnami SealedSecrets with ArgoCD and Kustomize. I have managed to encrypt the secrets using the kubeseal CLI, these are already deployed on the Kubernetes cluster as Sealed secrets and can be unsealed by the Sealed Secret…
Attila
  • 3,206
  • 2
  • 31
  • 44
2
votes
1 answer

Sealed secret on different clusters

What is the common way to deploy a chart(which contains sealed secrets) to different clusters? Because the clusters contains different sealed-secret controller (with different secret key) it seems unfeasible. Or is there any way to install a…
beatrice
  • 3,684
  • 5
  • 22
  • 49
2
votes
2 answers

Kubernetes Missing secret file with error Error: secret "env" not found

When I deploy the new release of the Kubernetes app I got that error Error: secret "env" not found even I have env in Custom Resource Definitions --> sealedsecrets.bitnami.com env.yaml apiVersion: bitnami.com/v1alpha1 kind:…
Mina Fawzy
  • 20,852
  • 17
  • 133
  • 156
1
vote
1 answer

how can I locally decrypt already sealed secrets?

I have a question in regards to using sealed-secrets . SealedSecrets solution solves the issue we’ve got: be able to store secrets in our version control. However, we want to be able to re-generate the plain secret file from a sealed-secret file (an…
0
votes
1 answer

Kubernetes secrets encryption and usage using secrets managers vs encryption at rest. Are secrets manager even really secure?

I'm getting into Kubernetes security and I'm looking at various ways to encrypt and use Secrets values in pods but I think I'm not grasping some key concepts. As I understood it, from the cluster security standpoint encrypting secrets should avoid…
0
votes
0 answers

sealed secret deployment with helm but the pods fail to start

I'm trying to deploy sealed secret to kubernetes cluster using helm, once the helm chart is deployed I can find the secret under sealedsecret/api However the pods fail to start, with the Error: secret "api" not found , how can I tell the pod to use…
akano1
  • 40,596
  • 19
  • 54
  • 67
0
votes
1 answer

How to add a sealed-secret.yaml file in a Helm chart?

I have a custom helm chart that I wrote which has a deployment.yaml, service.yaml and other yamls. Now, I want to included a sealed-secret.yaml template file such as following in it: {{- if .Values.sealedSecrets -}} apiVersion:…
Katlock
  • 1,200
  • 1
  • 17
  • 41
0
votes
1 answer

Sealed secrets with YAML list

I got a list in yml - credentials. And supposedly each bank has to have a different password that needs to be encrypted. What would be the right way to specify that? As of now I got it configured like this, but that doesn't work. This is the…
JavaGeek
  • 335
  • 1
  • 2
  • 11
0
votes
1 answer

How to encrypt data in one instance of Windows and decrypt in different OS instance running on the same system?

This is an extension of How to encrypt data in one app and decrypt it in different Windows app with RSA keys tied to local system?. From the linked question above, I was able to encrypt/decrypt data between multiple apps under same OS instance (i.e.…
videoguy
  • 1,732
  • 2
  • 24
  • 49
0
votes
2 answers

ArgoCD : resource already exists and is not managed by SealedSecret

I create sealedsecret from dockercondigjson secret. Created secret displayed in kubectl sealed secrets. But, I have message in ArgoCD, in events of sealedsecret: failed update: Resource "mysecret" already exists and not managed by…
0
votes
1 answer

How to Configure Spring Boot on Kubernetes With Secrets

I have encrypted two database passwords with kubeseal, but I am not sure how exactly to mount them in my configuration file assuming I am using Spring Boot. The application keeps complaining about missing placeholder password. Could not resolve…
JavaGeek
  • 335
  • 1
  • 2
  • 11
0
votes
0 answers

ArgoCD with Bitnami Sealed Secrets

I am trying to install sealedsecrets as an app to argocd. I have all my sealedsecrets yaml files stored in eee_ops. But I am facing 2 problems a) sync keeps failing in my argocd app as the resource version of the sealedsecret keeps changing with…
abc123
  • 9
  • 1
-2
votes
1 answer

How to edit a sealed secret in kubernetes?

I've a kubernetes sealed secret with encrypted data in it. How can I edit the sealed secret like editing a deployment using command "kubectl edit deployment". I know kubectl edit secret works on normal secrets not on sealed secrets. apiVersion:…