I hereby claim:
- I am davidshare on github.
- I am davidessien (https://keybase.io/davidessien) on keybase.
- I have a public key ASAHz1FqtTa4qUwjpIBGO5Np6KcusJS8fNoNM9pgirHLHAo
To claim this, I am signing this object:
```#!groovy | |
// define the images and resources to be used in running the pipeline | |
pipeline { | |
agent { | |
kubernetes { | |
label 'proj-backend-agent' | |
defaultContainer 'jnlp' | |
yaml """ | |
apiVersion: v1 |
#!/bin/bash | |
input="env_file_path" | |
secret_name="my-secret_name" | |
rm ./deployment_env.yaml ./secret_pair.txt | |
while IFS='=' read -r key value | |
do | |
if [[ ! -z "$key" && ! -z "$value" && "$key" != "#"* ]] | |
then | |
encoded=$(echo -n "$value" | base64 -w0) |
I hereby claim:
To claim this, I am signing this object:
Keyword research:
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap'); | |
*, | |
*::before, | |
*::after { | |
margin: 0; | |
padding: 0; | |
outline: 0; | |
box-sizing: border-box; | |
text-decoration: none; |
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap'); | |
*, | |
*::before, | |
*::after { | |
margin: 0; | |
padding: 0; | |
outline: 0; | |
box-sizing: border-box; | |
text-decoration: none; | |
list-style: none; |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: nginx-deployment | |
labels: | |
app: nginx | |
spec: | |
replicas: 10 | |
selector: | |
matchLabels: |
// app/(dashboard)/journals/new/pages.tsx | |
import { | |
ResizableHandle, | |
ResizablePanel, | |
ResizablePanelGroup, | |
} from "@/components/ui/resizable"; | |
const NewJournal = () => { | |
return ( |