Kamesh Sampath
Kamesh Sampath
Say I have `.env` like ``` MY_USERNAME=${LOCAL_DEVELOPER_USERNAME} ``` The `LOCAL_DEVELOPER_USERNAME` is host environment variable, I wish the value of that to be expanded using the host environment variable value with...
After installing powerline patched fonts on OSX with iTerm2 , I see the glyphs seem to be broken. ``` setw -g window-status-current-format "#[fg=$color_dark,bg=$color_main]$separator_powerline_right#[default]#I:#W# #[fg=$color_main,bg=$color_dark]$separator_powerline_right#[default]" ```  I need to make...
- use k3s.local domain - use LIMA_INSTANCE as way to detect if its Rancher Desktop or vanilla lima-vm
When scripting to create k3s cluster with k3d via config file, I am not able to pass the config via `stidin` ## What did you do ```shell cat
Currently the Jaeger variables are added as ENV in Docker file: ``` ENV JAEGER_SERVICE_NAME=customer\ JAEGER_ENDPOINT=http://jaeger-collector.istio-system.svc:14268/api/traces\ JAEGER_PROPAGATION=b3\ JAEGER_SAMPLER_TYPE=const\ JAEGER_SAMPLER_PARAM=1 ``` We could avoid this and add them to Kubernetes Deployment YAML...
/question I am trying to deploy Argo CD on OpenShift, my OpenShift router is patched to use my TLS certs (letsenctypt). When I try to use the same certificates with...
/question Can we have the Argo CD operator status to be reported in a standard Kubernetes way with `status -> conditions[*]`, that will help the automation tools like Ansible or...
Using upstream Knative Operators for installing and configuring Knative
Making Quarkus version as environment variable, as that helps in the commands like to be easy to maintain during release updates: ``` mvn io.quarkus:quarkus-maven-plugin:$QUARKUS_VERSION:create \ -DprojectGroupId="com.example" \ -DprojectArtifactId="fruits-app" \ -DprojectVersion="1.0-SNAPSHOT"...