Show artifacthub
helm search repo quarkus
helm show chart redhat-charts/quarkus
helm show readme redhat-charts/quarkus
helm pull redhat-charts/quarkus --untar
helm install redhat-charts/quarkus --generate-name
| GATEWAY_URL=$( \ | |
| oc get route istio-ingressgateway -n istio-system \ | |
| -o template --template '{{ "http://" }}{{ .spec.host }}') | |
| curl ${GATEWAY_URL}/trace | |
| JAEGER_URL=$( \ | |
| oc get route jaeger -n istio-system \ | |
| -o template --template '{{ "https://" }}{{ .spec.host }}') |
| openssl s_client -connect www.google.com:443 2>/dev/null </dev/null | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' |
| sudo cp *.pem /etc/pki/ca-trust/source/anchors | |
| sudo update-ca-trust |
| apiVersion: serving.knative.dev/v1 | |
| kind: Service | |
| metadata: | |
| name: knative-crud-api | |
| namespace: serverless-demo | |
| spec: | |
| template: | |
| spec: | |
| containerConcurrency: 0 | |
| containers: |
| oc create secret docker-registry docker-hub \ | |
| --docker-server=docker.io \ | |
| --docker-username=youhoo \ | |
| --docker-password=yoursecret | |
| oc secrets link default docker-hub --for=pull,mount | |
| oc secrets link builder docker-hub --for=pull,mount |
| apiVersion: apps/v1 | |
| kind: Deployment | |
| metadata: | |
| labels: | |
| app: nominatim | |
| name: nominatim | |
| namespace: nominatim | |
| spec: | |
| replicas: 1 | |
| selector: |
| apiVersion: apps/v1 | |
| kind: Deployment | |
| metadata: | |
| annotations: | |
| kompose.cmd: kompose convert -f docker-compose.yaml | |
| kompose.version: 1.22.0 (HEAD) | |
| creationTimestamp: null | |
| labels: | |
| io.kompose.service: conductor-server | |
| name: conductor-server |
| https://maven.repository.redhat.com/ga/io/fabric8/archetypes/archetypes-catalog/ |
| htpasswd -c htpasswd admin | |
| cat userpasswords.csv | while read line; do | |
| USERNAME=$(echo $line | awk -F ',' '{print $1}'); | |
| PASSWORD=$(echo $line | awk -F ',' '{print $2}'); | |
| echo $PASSWORD | htpasswd -i ./htpasswd $USERNAME; | |
| done; |