I hereby claim:
- I am markwarneke on github.
- I am markwarneke (https://keybase.io/markwarneke) on keybase.
- I have a public key ASBpqyqPjT5rTKbbLuPFf3WkSqUChgYIUzhgSuB6ArxiIQo
To claim this, I am signing this object:
| # container-azm-ms-agentconfig.yaml | |
| # FOLLOWING: https://docs.microsoft.com/en-us/azure/azure-monitor/insights/container-insights-agent-config | |
| # ORIGINAL: https://raw.githubusercontent.com/microsoft/Docker-Provider/ci_prod/kubernetes/container-azm-ms-agentconfig.yaml | |
| kind: ConfigMap | |
| apiVersion: v1 | |
| metadata: | |
| name: container-azm-ms-agentconfig | |
| namespace: kube-system | |
| data: |
| --- | |
| faqitems: | |
| - question: This is a question1 | |
| answer: >- | |
| This is my answer, and if you want [mailto](mailto:[email protected]) | |
| - question: This is a question2 | |
| answer: >- | |
| This is an answer with list elements: | |
| - Element One. |
I hereby claim:
To claim this, I am signing this object:
| - uses: hashicorp/setup-terraform@v1 | |
| - name: Update Pull Request | |
| uses: actions/[email protected] | |
| if: github.event_name == 'pull_request' | |
| env: | |
| PLAN: "${{ steps.plan.outputs.stdout }}" | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| script: | | |
| const output = ` |
| package test | |
| import ( | |
| "fmt" | |
| "log" | |
| "math/rand" | |
| "os" | |
| "strings" | |
| "testing" | |
| "github.com/gruntwork-io/terratest/modules/terraform" | |
| ) |
| import { Construct } from 'constructs'; | |
| import { App, TerraformStack, TerraformOutput } from 'cdktf'; | |
| import { AzurermProvider, KubernetesCluster, KubernetesClusterConfig, KubernetesClusterDefaultNodePool, KubernetesClusterServicePrincipal, ResourceGroup, ResourceGroupConfig } from './.gen/providers/azurerm' | |
| class K8SStack extends TerraformStack { | |
| constructor(scope: Construct, name: string) { | |
| super(scope, name); | |
| const provider = new AzurermProvider(this, 'AzureRm', { | |
| features: [{}] |
| #!/bin/bash | |
| BASEDIR=$(sh -c pwd) | |
| for foldername in */; do \ | |
| cd $foldername && \ | |
| branch=$(git rev-parse --abbrev-ref HEAD) && \ | |
| lbranches=$(git branch) | |
| echo "======= Status for $foldername --- branch: $branch =======" && \ | |
| git status | |
| echo "------- local branches --------" && \ | |
| echo "$lbranches" |
| #!/bin/bash | |
| BASEDIR=$(sh -c pwd) | |
| for foldername in */; do \ | |
| cd $foldername && \ | |
| branch=$(git rev-parse --abbrev-ref HEAD) && \ | |
| echo "======= Pulling $foldername --- branch: $branch =======" && \ | |
| git pull && \ | |
| git remote prune origin | |
| cd $BASEDIR | |
| done |
| # azuredeploy.adls.Tests.ps1 | |
| param ( | |
| $Path = (Join-Path $PSScriptRoot "azuredeploy.json") | |
| ) | |
| # Test for template presence | |
| $null = Test-Path $Path -ErrorAction Stop | |
| # Test if arm template content is readable | |
| $text = Get-Content $Path -Raw -ErrorAction Stop |
| #azuredeploy.Tests.ps1 | |
| param ( | |
| $Path = (Join-Path $PSScriptRoot "azuredeploy.json") | |
| ) | |
| Describe "[$Path] should be valid" -Tag Unit { | |
| # Test for template presence | |
| $null = Test-Path $Path -ErrorAction Stop |