Reputation: 295
I'm creating a public Pod which is using a private Pod. Here, if I try to push the public pod, it's showing some error messages like "Can't find the specification".
Is it possible to use the private Pod inside the public Pod?
Upvotes: 0
Views: 77
Reputation: 58029
No.
If one of your pods is private, that means it's only accessible to you. Since Pods are not like embedded libraries, the source code needs to be accessible to the host as well.
In essence, the dependencies should have a higher or an equal access level as the host project.
Upvotes: 1