This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Test with Bitnami chart. helm install psql --set auth.postgresPassword=postgres oci://registry-1.docker.io/bitnamicharts/postgresql | |
apiVersion: v1 | |
kind: ConfigMap | |
metadata: | |
name: rp-jb-nginx | |
data: | |
nginx.conf: | | |
events {} | |
http { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const sleep = (ms: number) => { | |
return new Promise(resolve => setTimeout(resolve, ms)); | |
} | |
/* First example */ | |
const delayedPrint = async (delayMs: number, value: string) => { | |
await sleep(delayMs) | |
console.log(value) | |
} |