dev-samples
dev-samples
Using: k8s 1.15 in azure/aks kube-prometheus-stack-9.4.10 I am trying to get Prometheus to list _available capacity_ for a list of PVCs I have created for my k8s cluster in aks/azure....
I have the below **build.gradle** file (using gradle 7.1 on ubuntu) ``` plugins { id 'org.springframework.boot' version '2.5.1' id 'io.spring.dependency-management' version '1.0.11.RELEASE' id 'java' id "fr.brouillard.oss.gradle.jgitver" version "0.10.0-rc03" } group...
In the values file its possible to create a volume of type HostPath: https://github.com/jenkinsci/helm-charts/blob/main/charts/jenkins/values.yaml#L628 ``` volumes: [] # - type: HostPath # hostPath: /var/lib/containers # mountPath: /var/myapp/myhostpath ``` but I...
Using: ``` id 'org.unbroken-dome.helm-commands' version '1.7.0' id 'org.unbroken-dome.helm' version '1.7.0' id 'org.unbroken-dome.helm-publish' version '1.7.0' id 'org.unbroken-dome.helm-releases' version '1.7.0' ``` password for adding a helm repo is leaked to the build...
I am using `aws-cdk-lib/aws-lambda` with typescript for my lambdas e.g.: ``` import * as lambda from 'aws-cdk-lib/aws-lambda'; ... const myLambda = new lambda.Function(this, `my-lambda`, { functionName: `my-lambda`, runtime: lambda.Runtime.NODEJS_16_X, handler:...
How do I edit an existing connection? Seems I can only delete, refresh or create a connection.
Based on: https://docs.microsoft.com/en-us/azure/app-service/deploy-github-actions?tabs=applevel https://github.com/Azure/actions-workflow-samples/tree/master/AppService I am trying to enable github actions for deploying to a Azure Web App Service. But it seems its not supported I get this message: _Configuring...
Is it possible to read e.g. hostname, user and password for a connection to e.g. and external MySQL db? I have created this **data-sources.json** file ``` { "folders": {}, "connections":...
I am trying to enable debugging in vscode for an uwsgi application that is serving a Flask app. I have found some resources here: https://code.visualstudio.com/docs/python/tutorial-flask https://stackoverflow.com/questions/55605176/setup-uwsgi-debug-in-vs-code The first link will...