I hereby claim:
- I am rkttu on github.
- I am rkttu (https://keybase.io/rkttu) on keybase.
- I have a public key ASC4angFcEhW26hdDOcrHUYMQBHo5t_aGhg_p2hDEukQkQo
To claim this, I am signing this object:
| using TheCompany.Something.Api.Repositories; | |
| using TheCompany.Something.Data; | |
| using TheCompany.Something.Data.Models; | |
| using Machine.Fakes; | |
| using Machine.Specifications; | |
| using Microsoft.EntityFrameworkCore; | |
| using System; | |
| using System.Threading; | |
| using System.Threading.Tasks; |
| apiVersion: v1 | |
| kind: Pod | |
| metadata: | |
| labels: | |
| name: iis | |
| name: iis | |
| namespace: default | |
| spec: | |
| containers: | |
| - image: microsoft/iis:windowsservercore-1803 |
| apiVersion: apps/v1beta1 | |
| kind: Deployment | |
| metadata: | |
| name: azure-vote-back | |
| spec: | |
| replicas: 1 | |
| template: | |
| metadata: | |
| labels: | |
| app: azure-vote-back |
| apiVersion: v1 | |
| kind: Pod | |
| metadata: | |
| name: iis-winsvrcore | |
| spec: | |
| containers: | |
| - image: mcr.microsoft.com/windows/servercore/iis:windowsservercore-ltsc2016 | |
| imagePullPolicy: Always | |
| name: iis-winsvrcore | |
| resources: |
| // Copyright (c) Microsoft. All rights reserved. | |
| // Licensed under the MIT license. See LICENSE file in the project root for full license information. | |
| 'use strict'; | |
| var Protocol = require('azure-iot-device-amqp').AmqpWs; | |
| // Uncomment one of these transports and then change it in fromConnectionString to test other transports | |
| // var Protocol = require('azure-iot-device-amqp').AmqpWs; | |
| // var Protocol = require('azure-iot-device-http').Http; | |
| // var Protocol = require('azure-iot-device-mqtt').Mqtt; |
| <Query Kind="Statements"> | |
| <NuGetReference>Microsoft.Windows.SDK.Contracts</NuGetReference> | |
| <Namespace>Windows.Globalization</Namespace> | |
| <Namespace>Windows.Graphics.Imaging</Namespace> | |
| <Namespace>Windows.Media.Ocr</Namespace> | |
| <Namespace>Windows.Storage</Namespace> | |
| <Namespace>Windows.Storage.Streams</Namespace> | |
| <Namespace>System.Net.Http</Namespace> | |
| </Query> |
I hereby claim:
To claim this, I am signing this object:
| FROM mcr.microsoft.com/windows/servercore/iis:windowsservercore-ltsc2019 | |
| RUN set COMPLUS_NGenProtectedProcess_FeatureEnabled=0 & \ | |
| \Windows\Microsoft.NET\Framework64\v4.0.30319\ngen update & \ | |
| \Windows\Microsoft.NET\Framework\v4.0.30319\ngen update | |
| ADD https://github.com/microsoft/windows-container-tools/releases/download/v1.0/LogMonitor.exe /LogMonitor/ | |
| ADD https://dotnetbinaries.blob.core.windows.net/servicemonitor/2.0.1.3/ServiceMonitor.exe / | |
| RUN powershell.exe -Command Set-WebConfigurationProperty -p 'MACHINE/WEBROOT/APPHOST' -fi 'system.applicationHost/log' -n 'centralLogFileMode' -v 'CentralW3C'; \ |
| function global:Invoke-Terraform { | |
| [CmdletBinding()] | |
| [Alias('tf')] | |
| param ( | |
| [parameter(Mandatory=$False,Position=0,ValueFromRemainingArguments=$True)] | |
| [Object[]] $Arguments | |
| ) | |
| begin { | |
| $PrevAwsProfile = $env:AWS_PROFILE; $env:AWS_PROFILE='saml' | |
| } |
| function global:Select-KubeContext { | |
| [CmdletBinding()] | |
| [Alias('kubectx')] | |
| param ( | |
| [parameter(Mandatory=$False,Position=0,ValueFromRemainingArguments=$True)] | |
| [Object[]] $Arguments | |
| ) | |
| begin { | |
| if ($Arguments.Length -gt 0) { | |
| $ctx = & kubectl.exe config get-contexts -o=name | fzf.exe -q @Arguments |