openwhisk-deploy-kube icon indicating copy to clipboard operation
openwhisk-deploy-kube copied to clipboard

The Apache OpenWhisk Kubernetes Deployment repository supports deploying the Apache OpenWhisk system on Kubernetes and OpenShift clusters.

Results 67 openwhisk-deploy-kube issues
Sort by recently updated
recently updated
newest added

## Steps to reproduce the issue 1. Create EKS cluster: `eksctl create cluster --name test-cluster-1 --region eu-central-1 --node-type t2.large --nodes 1` 2. Label nodes: `kubectl label nodes --all openwhisk-role=invoker` 3....

Hi Team, I am trying to install OpenWhisk in a Kubernetes cluster deployed via `Kind`. The kind config file is shown below: ``` kind: Cluster apiVersion: kind.x-k8s.io/v1alpha4 name: openwhisk nodes:...

Deploying Apache OpenWhisk on a DIY Kubernetes cluster can throw a couple of curveballs. Here's a quick rundown of the snags I hit and how I untangled them. 1. **GitHub...

Is there a way to configure invokers with Tags using the helm charts? i.e., as in the [tag-based-scheduling in OpenWhisk](https://github.com/apache/openwhisk/blob/master/docs/tag-based-scheduling.md). For instance I was thinking of adding user-action pod templates...

I have openwhisk deployed on a kubernetes cluster. I created a trigger called once-per-minute using this swagger ui, The curl request: - ``` curl -X PUT "https://localhost:4430/api/v1/namespaces/_/triggers/once-per-min?overwrite=false" -H "accept: application/json"...

I have a dns set up on 192.168.9.30. My actions contains urls which needs to be resolved on this server but the actions are unable to reach the server and...

Related to #735; let's save people (like me) from wasting time debugging their deployment.

ENOTDIR: not a directory, open '/openwhisk-package-alarms/action/node_modules/.staging/@types/node-7154234c/package.json' I'm starting to wonder if this project is even maintained anymore?

After running helm install owdev openwhisk/openwhisk -n openwhisk --create-namespace -f mycluster.yaml, I checked the logs of pod owdev-zookeeper-0 and received the zookeeper image error. Failed to pull image "zookeeper:3.4": rpc...

I know that KafKa is the queue used by the openwhisk system. Any function call needs to be queued in the kafka queue. So, can the length of this queue...