Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ability to use with kubernetes configmaps #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

ayenter
Copy link

@ayenter ayenter commented Aug 8, 2018

Kubernetes configmaps place files in hidden folders and use symlinks to these files. Using a traditional find command will return the absolute path to the file (which is an undesired path), instead of the symlink (desired path). This pr will update the *.proto file find command to return all files AND SYMLINKS that are not in a hidden folder.

Ex:

$ ls -al protos
  drwxr-xr-x    1 root     root          4096 Aug  8 21:35 .
  drwxr-xr-x    1 root     root          4096 Aug  8 19:17 ..
  -rw-r--r--    1 root     root          3708 Aug  8 19:18 protos/my.proto
$ kubectl create configmap my-protos --from-file=protos/
$ kubectl create -f deploy.yaml
$ kubectl exec -it container /bin/bash
# ls -al /opt/generator/protos
  drwxrwxrwx    3 root     root          4096 Aug  8 19:46 .
  drwxr-xr-x    3 root     root          4096 Aug  8 20:02 ..
  drwxr-xr-x    2 root     root          4096 Aug  8 19:46 ..2018_08_08_19_46_03.335203197
  lrwxrwxrwx    1 root     root            31 Aug  8 19:46 ..data -> ..2018_08_08_19_46_03.335203197
  lrwxrwxrwx    1 root     root            20 Aug  8 19:46 my.proto -> ..data/my.proto

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant