can someone help me? I have a repository having some YAML files like deployment_app.yaml, and a secret object. the pod inside the deployment_file must read the secret object during the deployment process and I wanna save the secret object into a git secret but I also still want to let the deployment file be able to read the secret object once the deployment, how can I do it?
1
There are 1 best solutions below
Related Questions in GITHUB
- How do I create my own Git branch to work on?
- Tools for Apache Cordova - Installed Plugins are skipped in build
- Permission denied hg-git
- git hard reset - what am I doing wrong?
- Merge Pull Request Manually
- rebasing interactively, but only one commit shows up?
- Error when adding a new build stage on Bluemix DevOps Services
- What should I do if I put MS Office (e.g. .docx) or OpenOffice( e.g. .odt) document into a git repository?
- How to trigger git hooks without pushing to the repo
- How to push a Git server repository issues to Github repository?
- How to backup an AOSP project on GitHub
- How to reference comments in github.com?
- Aptana, github & remote (sftp) files
- Opening PDF in a browser with Github Pages
- I need git to include the parent directory
Related Questions in KUBERNETES
- How to know a Pod's own IP address from inside a container in the Pod?
- Who will decide the "specified number of pods" for replication controller in kubernetes?
- Access other containers of a pod in Kubernetes
- Kubernetes cluster using Vagrant not working after restart
- kubectl not installed with gcloud SDK
- How do I access the Kubernetes api from within a pod container?
- Exposing several services with Vagrant and Kubernetes on my own server
- Does Kubernetes provision new VMs for pods on my cloud platform?
- Any suggestion for running Aerospike on Kubernetes on CoreOS on GCE?
- Kubernetes - kubectl exec bash - session drop and line width
- Google Container Engine (GKE): "Hello Wordpress" tutorial not working (ERR_CONNECTION_REFUSED)
- Kubernetes Pod Creation Speed
- How can i set max count of pods for replication-controller per node?
- Is there a way to tell kubernetes to update your containers?
- Postgres with Kubernetes and persistentDisk
Related Questions in KUBERNETES-POD
- Kubernetes Service not able to loadbalance requests
- Spark Submit: You have not specified a krb5.conf file locally or via a ConfigMap
- Rook and ceph on kubernetes
- `mkdir` returns successfully but doesn't work in kubernetes (minikube) shared volume
- Back-off restarting failed container kubernetes
- Kubernetes node’s condition based scheduling using helm chart
- How to get a heap dump from Kubernetes k8s pod?
- AKS : Kubernetes coreDNS fails to resolve headless services
- EKS LoadBalancer service not returning response outside from EKS
- Kops - unable to bound to storage class using pvc
- How to Access rest api (deployed in k8 cluster) via service name
- Azure AKS: Kubernetes pod keeps showing CrashLoopBackOff status after assigning static IP
- are kubernetes horizontal pod autoscaling a reactive approach or proactive approach?
- can VPA and HPA(Auto Scaling) in kubernetes used together?
- Kubernetes service account to access all the namespaces
Related Questions in KUBERNETES-SECRETS
- how to use secret on machine where kubernetes cluster is installed?
- Error in image_pull_secrets for private repository Airflow deployed in Kubernetes
- How to inject secret value to Kubernetes crd?
- How to use quarkus.kubernetes-config.secrets.enabled in application.yml?
- Keep formating of data in kubernetes secret
- transforming configMapKeyRef into secretKeyRef with jq
- dapr | failed getting app id either from the URL path or the header dapr-app-id
- mongo-express running in minikube doesnt seem to be using password from secret
- How to concatinate random generated string in Kubernetes secret yaml
- Bash - Iterate over map from k8s secrets call
- Is there a way to reference a kubernetes secret in a Kong plugin yaml file?
- AWS KMS permission issue : User not authorized to perform kms:CreateGrant (Service: EKS StatusCode: 400)
- GKE Secrets OR Google Secret manager
- kubed syncing secret to more than one namespace
- k3s pods are not mounting secrets defined in helm deployment's imagePullSecrets
Related Questions in GIT-SECRET
- git-secret-reveal failed on github actions
- Can't reveal secrets during continuous integration
- Invalid preceding regular expression git secret
- Where should I specify a pinentry program for GnuPG 2.0 and later?
- configure ci_secrets for Jenkins ci
- remove git secrets from Ubuntu
- Importing backed up private key, gpg: [don't know]: partial length invalid for packet type 20
- Can We Access Github secrets variable in our firebase cloud functions at run time? if Yes, Please explain the process with example
- How Can I know if the created GPG key is with or without the passphrase ? Let's say the key was created using gpg --gen-key without entering passphras
- Jenkins CI / CD on an Open Source Github project with confidential properties files
- What is a regular expression to identify the AWS basic auth value in the repository for git-secret?
- Using git-secret with git pre-commit not working
- git-secrets decryption in GitHub actions
- EDIT: iam still need the help : how can i add an secret object into a git secrets and make my app read it once i deploy the yaml file?
- Best practises storing credentials/secrets across devices/teams
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Here's how it can be done, from the documentation of
git secret. Read the docs here.Basically you will have to create a new key-pair in your CI that will be used to decrypt the Git secret during deployment.