- This sample is based on "Tutorial: Deploy a Dapr application to Azure Container Apps with an Azure Resource Manager or Bicep template"
- In addition to the tutorial, added virtual network integration and private endpoints
graph TB
subgraph VNet
graph TB
subgraph VNet
{ | |
"trigger": { | |
"schedule": { | |
"interval": "5m" | |
} | |
}, | |
"input": { | |
"chain": { | |
"inputs": [ | |
{ |
#!/bin/bash | |
TMUX_VERSION="2.1" | |
LIBEVENT_VERSION="2.0.20" | |
NCURSES_VERSION="6.0" | |
# Script for installing tmux on systems where you don't have root access. | |
# tmux will be installed in $HOME/local/bin. | |
# It's assumed that wget and a C/C++ compiler are installed. |
Thanks to this article by Christoph Berg
Directories and files
~/
This is the setup that I use for mutt, I have two google domain account (read as gmail) and an institution where I work and study account. This means I have two gmail accounts and one outlook 365 account that i want to sync and read via mutt.
I want to store all my email locally as I travel a lot and will be in countries without easy internet access. For this I use mbsync (iSync). As it can handle multiple account types easily and efficently.
The setup works this way
[Remote Mail Servers] <= mbsync => [Local Mail Folders]
<template> | |
<div id="app"> | |
<img src="./assets/logo.png"> | |
<router-view/> | |
<button @click="download">Download</button> | |
<div id="pdf"></div> | |
</div> | |
</template> | |
<script> |
################### INSTALL METRICSBEAT ###################### | |
wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add - | |
echo 'deb https://artifacts.elastic.co/packages/oss-6.x/apt stable main' | sudo tee /etc/apt/sources.list.d/beats.list | |
sudo apt-get update && sudo apt-get install metricbeat | |
sudo metricbeat keystore create | |
echo "${elastic_pw}" | sudo bin/metricbeat-keystore add ES_PASSWORD | |
# echo "setup.dashboards.enabled: true" >> /etc/metricbeat/metricbeat.yml | |
cat <<EOT >> /etc/metricbeat/metricbeat.yml | |
output.elasticsearch: |
apiVersion: argoproj.io/v1alpha1 | |
kind: Application | |
metadata: | |
name: root-app | |
namespace: argocd | |
finalizers: | |
- resources-finalizer.argocd.argoproj.io | |
spec: | |
destination: | |
namespace: argocd |
apiVersion: argoproj.io/v1alpha1 | |
kind: Application | |
metadata: | |
name: applications | |
namespace: argocd | |
finalizers: | |
- resources-finalizer.argocd.argoproj.io | |
spec: | |
destination: | |
namespace: argocd |