I hereby claim:
- I am eiximenis on github.
- I am eiximenis (https://keybase.io/eiximenis) on keybase.
- I have a public key ASAXTBjrbVTaTv0pMbY3PbykDT4n_MlNN4WM2bbv9gaWOgo
To claim this, I am signing this object:
| (function() { | |
| const a=10; | |
| a=20; | |
| let b=10; | |
| b=20; | |
| console.log("a-->" + a); | |
| console.log("b-->" + b); | |
| var s = true; | |
| while (s) { | |
| const ic = 10; |
| FROM microsoft/aspnetcore:2.0 AS base | |
| WORKDIR /app | |
| EXPOSE 80 | |
| FROM base as withnode | |
| RUN apt-get update && apt-get install -my wget gnupg | |
| RUN apt-get -qq update && apt-get -qqy --no-install-recommends install \ | |
| git \ | |
| unzip |
| Param( | |
| [parameter(Mandatory=$false,ValueFromPipeline=$true)][string]$content="", | |
| [parameter(Mandatory=$false)][string]$inputFile="", | |
| [parameter(Mandatory=$false)][string]$outputFile="", | |
| [parameter(Mandatory=$true)][hashtable]$tokens | |
| ) | |
| if ([string]::IsNullOrEmpty($content)) { | |
| if ([string]::IsNullOrEmpty($inputFile)) { |
I hereby claim:
To claim this, I am signing this object:
| ARG RELEASE_VERSION=v0.15.2 | |
| FROM golang:1.14.0-buster | |
| ARG RELEASE_VERSION | |
| ENV GOROOT=/usr/local/go | |
| # Download and install operator sdk | |
| WORKDIR /usr/local/bin | |
| RUN curl -LO https://github.com/operator-framework/operator-sdk/releases/download/${RELEASE_VERSION}/operator-sdk-${RELEASE_VERSION}-x86_64-linux-gnu && \ | |
| chmod +x operator-sdk-${RELEASE_VERSION}-x86_64-linux-gnu && \ | |
| ln -s operator-sdk-${RELEASE_VERSION}-x86_64-linux-gnu operator-sdk | |
| # Download and install Docker CLI (no daemon) |
| #Parameter section | |
| Param | |
| ( | |
| [Parameter(Mandatory = $false, HelpMessage = 'Subscription id to use')][String] $subscriptionId = "", | |
| [Parameter(Mandatory = $true, HelpMessage = 'AKS Resource group')][String] $rg, | |
| [Parameter(Mandatory = $false, HelpMessage = 'Resource group to store the snapshots (default: AKS nodes RG)')][String] $destinationRg="", | |
| [Parameter(Mandatory = $false, HelpMessage = 'AKS name (in the RG)')][String] $aksName, | |
| [Parameter(Mandatory = $false, HelpMessage = 'PVCs to backup')][String[]] $pvcsToBackup= [string []]"", | |
| [Parameter(Mandatory = $false, HelpMessage = 'Tag used to identify if disk is AKS managed')][String] $tagCreatedBy="created-by", | |
| [Parameter(Mandatory = $false, HelpMessage = 'Tag used to identify if disk is AKS managed')][String] $tagCreatedByValue="kubernetes-azure-dd", |