Jorge Arias

Results 7 comments of Jorge Arias

If someone is here searching a method to load multiple environment variables from a single Secret in Google Cloud Secret Manager that create a single attribute in the resultant Secret....

You need enable the requisite templates feature ```sh hal config features edit --pipeline-templates true hal config features edit --managed-pipeline-templates-v2-ui true hal deploy apply ``` https://spinnaker.io/docs/guides/user/pipeline/pipeline-templates/enable/ https://spinnaker.io/docs/guides/user/pipeline/pipeline-templates/

The problem appears when a GitHub don't have configured the public email in his profile and his emails are marked as "Keep my email addresses private". I've seen that setting...

This error also occurs when you don't have the User kind populated in the catalog. Don't forget add the [githubOrg](https://backstage.io/docs/integrations/github/org) (Groups, Users) provider additional to the [github](https://backstage.io/docs/integrations/github/discovery) provider (Repositories). To...

Have you tried to import the directory of users first that the GroupOfName directory? In my case I needed do that for use memberOf correctly.

Maybe your problem it's becouse you are importing data into OpenLDAP, you need create first the member and after the groupOfNames. For security LDAP no associate the member added after...

This is an example for run your OpenLDAP container: ```sh docker run --name openldap -d -p 389:389 \ -e SLAPD_PASSWORD=YourPassword \ -e SLAPD_DOMAIN=domain.com \ -e SLAPD_ORGANIZATION=YourBussinesName \ -e SLAPD_ADDITIONAL_MODULES=memberof \...