knctl
knctl copied to clipboard
Knative CLI
It seems like this repo is not being developed anymore. But it's the top search result for `knctl`. Maybe consider: 1. archiving this repo 2. linking to https://github.com/knative/client prominently.
https://github.com/knative/serving/releases/tag/v0.4.1 FYI @maximilien & I are going to discuss `knctl` at cfsummit this week
Hello All, I had build an image of a sample application from github [https://github.com/cppforlife/simple-app] with knctl command. Image is successfully build and I had stored this image of AWS ECR....
Hi, we tried to deploy a Java application via: ``` knctl deploy -s cf-sample-app --service-account docker-service-account --image DOCKERIMAGE --namespace test --template buildpack -d=. ``` Similar like #20 there was no...
First, thank you, Dmitriy for amazing toolset! Please find issue description: #kn install ... Waiting for Knative to start... Succeeded #k get mutatingwebhookconfiguration NAME AGE istio-sidecar-injector 59s webhook.build.knative.dev 20s webhook.serving.knative.dev...
consider how to configure probes when deploying ``` livenessProbe: httpGet: path: / port: http readinessProbe: httpGet: path: / port: http ```
Currently `knctl deploy -d path/to/folder` only supports a folder of raw source files. In cloud foundry, `cf push -p` supports both a folder and single file. The following demo should...
``` $ knctl route list Routes in namespace 'default' Name Domain Traffic Annotations Conditions Age fib-knative fib-knative.default.mycluster3.us-south.containers.appdomain.cloud 50% -> fib-knative-00003 - 3 OK / 3 10m 50% -> fib-knative-00002 1...
``` container: volumeMounts: - name: db-credentials mountPath: "/secrets/db-credentials" readOnly: true volumes: - name: db-credentials secret: secretName: db-secret ``` ``` knctl deploy --vol-secret db-credentials=db-secret:/secrets/db-credentials knctl deploy --vol-secret db-credentials=db-secret:/secrets/db-credentials:ro knctl deploy --vol-secret...
Currently `knctl install` does not install any build templates, and both `knctl deploy` and `knctl build create` do not use them by default (without `--template` flag). Instead, they manually construct...