2020-01-27 10:19:15 UTC - Keerthi Kumar S R: Hi all, In our company infra Helm is not supported.... How do we deploy open whisk on Kubernetes. Is there any alternative solution for this?? https://openwhisk-team.slack.com/archives/C4J3R7JFL/p1580120355006000?thread_ts=1580120355.006000&cid=C4J3R7JFL ---- 2020-01-27 11:41:29 UTC - Rodric Rabbah: We use kubectl directly https://openwhisk-team.slack.com/archives/C4J3R7JFL/p1580125289006600?thread_ts=1580120355.006000&cid=C4J3R7JFL ---- 2020-01-27 13:21:46 UTC - Keerthi Kumar S R: I am new to kubernetes... How to directly deploy using kubectl ?? https://openwhisk-team.slack.com/archives/C4J3R7JFL/p1580131306006800?thread_ts=1580120355.006000&cid=C4J3R7JFL ---- 2020-01-27 13:38:17 UTC - Neeraj Mangal: You can create the resulting spec using ‘helm template’ command.
Try like below, - helm template ./helm/openwhisk --namespace=<namespace> --name=<releasename> -f mycluster.yaml > tmp.yaml - kubectl apply -f tmp.yaml https://openwhisk-team.slack.com/archives/C4J3R7JFL/p1580132297013600?thread_ts=1580120355.006000&cid=C4J3R7JFL ----