red8888
red8888
I see examples like this: `breathe_projects_source = {"pyne": '../',}` And like this: `breathe_projects_source = {"auto" : ( "../examples/specific", ["auto_function.h", "auto_class.h"] )}` Pretty sure the latter is correct because I get...
Trying to build a new win10 eval: ``` packer build \ -only=virtualbox-iso \ -var iso_url=./iso/16299.15.170928-1534.rs3_release_CLIENTENTERPRISEEVAL_OEMRET_x64FRE_en-us.iso \ -var iso_checksum=3b5f9494d870726d6d8a833aaf6169a964b8a9be \ windows_10.json ``` Im running into this same issue: https://github.com/joefitzgerald/packer-windows/issues/239 But I...
I did an apply to update some PodDisruptionBudget resources. I ran kubent and it shows they were still outdated: ``` __________________________________________________________________________________________ >>> Deprecated APIs removed in 1.25
Output of `helm version`: version.BuildInfo{Version:"v3.8.0", GitCommit:"d14138609b01886f544b2025f5000351c9eb092e", GitTreeState:"clean", GoVersion:"go1.17.6"} Draft 7 supports neat new fields for validating string properties: https://json-schema.org/understanding-json-schema/reference/non_json_data.html#contentschema Helm 3 uses draft 7 but in my testing contentMediaType was...
Output of helm version: "v3.8.0" Output of `kubectl version`: ``` Client Version: version.Info{Major:"1", Minor:"21", GitVersion:"v1.21.5", GitCommit:"aea7bbadd2fc0cd689de94a54e5b7b758869d691", GitTreeState:"clean", BuildDate:"2021-09-15T21:10:45Z", GoVersion:"go1.16.8", Compiler:"gc", Platform:"darwin/amd64"} Server Version: version.Info{Major:"1", Minor:"20+", GitVersion:"v1.20.15-gke.1000", GitCommit:"d71f5620130949cf5f74de04e6ae8f3a96e4b718", GitTreeState:"clean", BuildDate:"2022-02-02T09:21:18Z", GoVersion:"go1.15.15b5",...
There are some related issues for this: * https://github.com/accurics/terrascan/issues/252 * https://github.com/accurics/terrascan/issues/119 There is a generic way to import data to sonarqube, but it would be cool if this was officially...
It always takes a very long time to delete namespaces. First I delete all resources in a namespace and confirm its empty: ``` kubectl get all -n derps No resources...
For example: ``` "yaml.schemas": { "/Users/me/one-schema.json": "more/specific/path/config*.yaml", "/Users/me/two-schema.json": "config*.yaml", ``` Which schema will be applied to this file: `/Users/me/more/specific/path/config-development.yaml` ? Can I have a default for all "config*.yaml" files that...
I used mustToJson against this string: `'[{"dfsdfdsf": "sdfsdf"]'` It didn't throw an error and returned this: `"[{\"dfsdfdsf\": \"sdfsdf\"]"`
Im trying to run clamav and an application that connects to clamav in the same container. My docker file looks like this to start: ``` FROM me.com/myapp AS build WORKDIR...