Kubeless is a framework that lets you deploy small bits of code without having to worry about the underlying infrastructure plumbing. It leverages Kubernetes resources to provide auto-scaling, API routing, monitoring, troubleshooting and more.
Questions tagged [kubeless]
13 questions
73
votes
5 answers
Not able to completely remove Kubernetes CustomResource
I'm having trouble deleting custom resource definition.
I'm trying to upgrade kubeless from v1.0.0-alpha.7 to v1.0.0-alpha.8.
I tried to remove all the created custom resources by doing
$ kubectl delete -f kubeless-v1.0.0-alpha.7.yaml
deployment…

smk
- 5,340
- 5
- 27
- 41
9
votes
1 answer
AWS EKS: Assign multiple Service Accounts to Deployment\Pod
I'm using Kubeless on AWS EKS. While installing Kubeless, the installation has a manifest which has some CRDs and a deployment object. The deployment object has already a Service Account attached. I have created another Service Account in the…

Janshair Khan
- 2,577
- 4
- 20
- 44
2
votes
1 answer
Error while deploying kubeless function to kubernetes cluster by using serverless framework
I am trying to deploy a kubeless function using serverless. I created a kubernetes cluster using minikube and I am trying to follow this link following which
I installed serverless
created a template kubeless-nodejs
installed plugins with npm…

hushed_voice
- 3,161
- 3
- 34
- 66
1
vote
2 answers
How to increase dockerhub rate limits within kubeless?
I have a kubeless version of v1.0.8 and I am building a machine learning mechanism that requires functions autoscaling on demand (approximately requests the generation of 100 pods per hour).
Being an anonymous Docker Hub user limits my downloads to…

efotopoulou
- 139
- 3
- 13
1
vote
2 answers
Serverless framework for trigger
I am looking for a serverless framework(free) , where i can create a kafka trigger and when triggered a kube function is to be invoked (python)
I have tried nuclio but the problem is that i have kafka version higher and they do not support higher…

Avenger
- 793
- 11
- 31
1
vote
1 answer
Unable to Trigger Kubeless Function With Kubeless Kafka Trigger
I'm attempting to trigger a Kubeless function (written as a Java method) and it doesn't seem to be working. I've tried everything I can think to try, but I've run out of ideas. Below is the Java method (it's basically an echo service, for…

senfo
- 28,488
- 15
- 76
- 106
1
vote
2 answers
no matches for kind "Deployment" in version "apps/v1"
I have minikube v0.26.0 version and kubectl v1.10.1 version and localKube v1.8.0
i get the following error when i try to deploy the kubeless ui
$ kubectl create -f https://raw.githubusercontent.com/kubeless/kubeless-ui/master/k8s.yaml …

Abhishek D K
- 2,257
- 20
- 28
1
vote
1 answer
How to resolve "-bash: kubeless: command not found" issue in Google Kubernetes Engine?
I have followed all the steps from the Bitnami website. I have installed Helm and Tiller. But when I give the command - kubeless function ls, it shows the error:
-bash: kubeless: command not found.
Also I have downloaded the kubeless.zip file but…

the-unreal
- 79
- 1
- 1
- 10
1
vote
1 answer
Kubeless function invoke error
Im having trouble invoking functions using kubeless.
Here is the function spec
---
apiVersion: kubeless.io/v1beta1
kind: Function
metadata:
name: smk
namespace: smktest
spec:
handler: hello.handler
runtime: python2.7
function: |
…

smk
- 5,340
- 5
- 27
- 41
0
votes
0 answers
Grabbing Kubernetes Secrets With .yml for Kubeless Bots
I have worked on grabbing Kubernetes secrets with a .yml file for weeks, but to no avail. My script is currently triggered by a KafkaTrigger, which cannot pull in secrets from Kubernetes. Grabbing the secrets, we are left with two possibilities: 1)…

jeisenman19
- 45
- 1
- 8
0
votes
0 answers
Need some advice on making a script which can create server-less functions
I want to create a lightweight utility similar to "Kubeless", which will take the function file and runtime as an input and create these functions which can be triggered using http requests
My approach -
A script (maybe python), which can generate…

akash khamkar
- 35
- 3
0
votes
3 answers
Not able to deploy functions on kubeless
Im a beginner in Kubernetes. I have been trying out kubeless on minikube. I have set up both in the latest version available. When i deploy the function, this is the output that i got:
INFO[0000] Deploying function... …

Midhun
- 744
- 2
- 15
- 31
0
votes
1 answer
How to upload files to a nodejs kubeless function?
I have a kubeless function written in nodejs and I'd like to upload a file using multipart, is it even possible? Or do I have to use base64?

iamdeit
- 5,485
- 4
- 26
- 40