Not able to to deploy an application #4320
-
As mentioned earlier (#4219) I deployed kubeapps with
where
With this I can reach the catalog panel But when I click on one (like airflow), I receive Do you know how to fix that? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
So after investigating, I found the problem: for historical reasons, by default Kubeapps determines which cluster in the config is the one on which Kubeapps is installed (and hence, the one where global package repositories are present), by checking for a cluster without an For this reason, we introduced an extra field in the clusters config, So the solution here is to set the |
Beta Was this translation helpful? Give feedback.
Thanks @junoriosity , though I meant if you could create an issue, not a discussion (they're two different things on Github), since this one is actually an issue. I've created #4323 .So after investigating, I found the problem: for historical reasons, by default Kubeapps determines which cluster in the config is the one on which Kubeapps is installed (and hence, the one where global package repositories are present), by checking for a cluster without an
APIServiceURL
. This is because, prior to using pinniped's impersonation proxy, this was always true. But when a setup requires pinniped's impersonation proxy, we end up setting theAPIServiceURL
for each cluster and so Kubeapps has no way…