SlideShare a Scribd company logo
Deep Dive
OpenShift on Azure
&
.NET Core on OpenShift
Takayoshi Tanaka @TanakaTakayoshi
Red Hat K.K. (Japan) tatanaka@redhat.com
Notes:
This slide is available online.
As I have tested at OCP 3.5 and .NET Core 2.0 preview2,
something will be changed at the latest OCP 3.6 and .NET Core 2.0
RTM.
If you have any question or comments, feel free to contact me:
email: tatanaka@redhat.com
Twitter: @TanakaTakayoshi
Background
Red Hat K.K. (Japan)
◦ Software Maintenance Engineer
◦ OpenShift
◦ Red Hat solutions on Azure
◦ .NET Core on RHEL
Personal
◦ Microsoft MVP for VSDT
◦ C# Lang, .NET Core on Linux
◦ Blogs:
◦ Red Hat Developers
◦ Personal Blog “Silver light and Blue sky”
VSDT: Visual Studio & Development Technologies
Goal
◦ Learn about OpenShift on Azure Reference Architecture
◦ How to integrate Azure Features with OpenShift
◦ .NET Core 2.0/integrating OpenShift features with
ASP.NET Core
Deep Dive OpenShitt on Azure & .NET Core on OpenShift
Reference Architecture
Document is now available
◦ Deploying Red Hat OpenShift Container Platform 3 on
Microsoft Azure
Deep Dive OpenShitt on Azure & .NET Core on OpenShift
OpenShift Ansible - Azure ARM Template
Installation Summary
1
• ARM Template for Azure Resources (VM, LB, NW…)
2
• Custom Script Extension with ARM
• generate config. files & execute ansible
3
• Ansible Installer for OpenShift
Known Issue
Available only in the Azure Marketplace VM
• duplicated billing. Custom image (.vhd) is on the roadmap.
No official Red Hat is available (self-support only)
• You should troubleshoot by yourself.
The OpenShift VM configuration is fixed
• 3 masters with etcd (same hosts), 3 infra nodes, 3+ nodes, 1 bastion
構成図
構成図
構成図
構成図
構成図
VMs
1 bastion
3 masters with etcd
3 infra nodes (router/docker registry)
3+ nodes
Support request required for increasing cpu core limit.
This limitation is due to design of ARM template.
You can install all-in-one OpenShift on 1 host (not supported)
Examples: Integrating Azure Features
Availability Set
Azure Load Balancer
◦ master endpoint
◦ backend is a group of masters
◦ routing endpoint
◦ backend is a group of infra nodes (routers)
Azure VHD for Persistent Volume (PV)
◦ Virtual Hard Disk for Azure VM (VHD)
◦ Dynamic provisioning Available at OCP 3.5+
How does Azure VHD for PV work?
node
service
/etc/azure.conf
1. node service receives
Volume Mount request
2. Load azure.conf
(API auth etc)
3. (if dynamic provisioning)
Create an empty VHD
4. Mount VHD to Azure VM
5. Create filesystem if needed
6. Mount filesystem to container
Depending on kubernetess Azure Volume Plugin
VHD
attach
How to configure azure.conf
See the document for more detail.
Easy 3 steps with Azure CLI 2.0
$ az account list -o json
//Retrieve tenantID & id
$ az group show --name <ResourceGroupName> -o json
//Retrieve id & location
$ az ad sp create-for-rbac --name <ResourceGroupName> --role contributor 
--scopes "<Resource Id>“ -o json
//Retrieve appId, password
Azure VHD for PV Notes
Managed Disk is unavailable
◦ kubernetes Azure Disk plugin is not supported Managed Disk
Be sure to confirm VM name to hostname
◦ Also specification of kubernetes plugin
Configure DNS yourself
◦ VMs can be communicate with their VM name.
◦ If not using Azure internal DNS
◦ If using VNET peering or other
More Azure Features
Azure Active Directory Open ID Connect
◦ authentication for master
◦ LDAP integration with AAD+AAD DS or AD is also available.
Azure Blob Storage for OpenShift internal docker registry
◦ object storage is suitable for docker registry storage
Azure File Storage
◦ File storage is also available for PV
◦ Linux kernel CIFS module with SMB 3 is still experimental
Operation Management Suite integration
◦ Log Analysis also available for containers
How to set up OpenID connect?
Create Azure AD App using the Microsoft Azure portal
How to set up LDAP auth with AD?
Option A) AAD + AAD DS + (VNET peering or VNET-to-VNET VPN)
* AAD DS only supports Classic VNET and requires private network from ARM VNET.
AAD AAD DS
classic VNET ARM VNET
OCP
master
ldap://xx.xx.xx.xx/
AAD DS configuration example
- name: "aad_ds_provider"
challenge: true
login: true
mappingMethod: claim
provider:
apiVersion: v1
kind: LDAPPasswordIdentityProvider
attributes:
id:
- dn
email:
- userPrincipalName
name:
- cn
preferredUsername:
- cn
bindDN: "cn=adadmin,ou=AADDC Users,DC=example,DC=onmicrosoft,DC=com"
bindPassword: "<password>"
insecure: true
url: "ldap://XXX.XX.XX.XX/OU=AADDC Users,DC=example,DC=onmicrosoft,DC=com?
userPrincipalName?sub?(memberof=CN=ocpgroup,OU=AADDC Users,DC=example,DC=onmicrosoft,DC=com)"
master-config.yaml
ou: AADDC Users
AAD default OU
userPrincipalName will be email
How to set up LDAP auth with AD?
Option B) on premise AD + VPN
Connect on premise Network and ARM Network with VPN.
AD
on premise NW ARM NW
OCP
master
ldap://xx.xx.xx.xx/
Storage Technology Comparison
Type References Notes
Azure Blob
Storage
Object
storage
Extended Registry Configuration
Microsoft Azure storage driver
Deploying Your Own Private Docker
Registry on Azure
Azure Blob Storage
Only Available for
docker registry
storage
Azure VHD Filesystem
on external
Disk
Persistent Storage Using Azure Disk
Configuring for Azure
About disks and VHDs for Azure Linux VMs
Depends on k8s
plugin
Azure File
Storage
NFS Persistent Storage Using Azure File
Configuring for Azure
How to use Azure File Storage with Linux
Depends on k8s
plugin
Experimental.
External
NFS
service
NFS N/A Should maintain
yourself or buy 3rd
party service.
Operation Management Suite (OMS)
Log Analysis & other features for on-premised to cloud
Containers (Preview) solution in Log Analytics now support OpenShift
Installing OMS Agent
Adding OMS agent directly on Linux Host
Or, install agent as a OpenShift daemonset
Container solution
Future: Windows Container?
No roadmap: Windows Container
kubernets has roadmap for working with Windows Container
“Capability” is existing.
Deep Dive OpenShitt on Azure & .NET Core on OpenShift
.NET Application Model
35
.NET Core Inside
36
.NET Core App
(C#/VB)
IL Assembly (exe, dll)
Roslyn CoreFX
(.NET Core
Class
Library)
ManagedUnmanaged
OS
Native ABI
etc
(F#)
compile
r
CoreCLR
(.NET Core Runtime)
.NET
Core
SDK
Tools
.NET Core on OpenShift
s2i build
◦ “Source code in the Git repo” To “docker Image”
◦ can run out of OpenShift
s2i image
◦ parameters for simple customize
◦ more customization are available with s2i scripts
Template project
◦ Start .NET Core on OpenShift with few clicks at the portal
◦ All in one: deploymentconfig, service, route etc…
s2i build & deploy flow
builder pod
SCM(git) internal registry
deployer pod
pod
deploymentConfigbuildConfig
$ dotnet build
$ dotnet publish
$ dotnet <dll>
.NET Core 2.0 launch start today!
rh-dotnet supports csproj at .NET Core 2.0
◦ rpm version will be available
◦ s2i for .NET Core 2.0 & ASP.NET Core 2.0
◦ Runtime image & s2i image (s2i image only at 1.x)
More new features coming
◦ Announcing .NET Standard 2.0
◦ Announcing .NET Core 2.0
◦ Introducing ASP.NET Core 2.0
◦ Announcing Entity Framework Core 2.0
Use Case Examples
◦Schedule Jobs with .NET Core
◦Switching Configuration for Dev & Prod Environment
◦Razor Page & C# 7.1
◦Redis for HTTP Session storage with multi pods
Notes:
All examples are built on .NET Core 2.0 preview.
We’re actively working on it now.
Schedule Job with .NET Core
Run .NET Core Console App as a cron job: Cron Jobs
Example Repository
Web portal does not support cron jobs, so use the CLI.
$ oc create imagestream cronjobexample
$ oc create -f cronjob-buildconfig.yaml
$ oc create -f cronjob.yaml
Schedule Jobs with .NET Core
spec:
containers:
- command:
- /opt/rh/rh-dotnet20/root/bin/dotnet
- bin/Release/netcoreapp2.0/CronJobExample.dll
image: 172.30.142.2:5000/london-openshift/cronjobexample:latest
imagePullPolicy: Always
name: lipsum-cron
resources: {}
restartPolicy: Never
securityContext: {}
terminationGracePeriodSeconds: 30
schedule: '*/1 * * * *'
command to execute:
should be the full path
command to execute:
*scl should be enabled.
To be fixed in my example
image should be specified with full URL
OCP 3.6 will support imagestreamtag.
Replace 172.30.142.2:5000 with your
internal registry’s IP and port
Switching Configuration for Dev & Prod Environment
How to treat different environments with one code
◦ Connect to different database
◦ Use Redis as a cache - only in a production environment
◦ Integrate with a different OpenID account
Use Environment feature in ASP.NET Core
◦ Specified by environment variables.
Configuration can be injected specific to each environment.
Switching with Environment
Startup class
• constructor
• Configure method
• ConfigurreService method
Check IHostingEnvironment
Can’t inject IHostingEnvironment into ConfigerService method
Switching ConfigureXXXServices
ConfigureXXXServices
Switching ConfigureXXX
ConfigureXXX
Inject configuration
from Environment Variable
Loading configuration from Secret
use OpenShift secret feature.
Razor Page + C# 7.1
RazorPage:
◦ Simpler application than original MVC: “Page-focused scenarios”
◦ WebMatrix like easy development
◦ Razor Page is enabled with MVC
C# 7.1:
◦ available at .NET Core 2.0 & ASP.NET Core 2.0
◦ C# 7.1 in Razor page is not working at Preview 2 by bug (see issue)
◦ It should be fixed at 2.0 RTM.
HTTP session for multi pods
By default:
◦ Sticky session: request goes to the same pod in same user session
◦ HTTP session is stored in the memory of each pod
◦ HTTP session is encrypted by pod specific key
It means:
When a pod has died, a user session will be lost.
 How to keep HTTP session
IDistributedCache & IDataProtection
IDistributedCache
◦ Provide distribution cache
◦ Available for storing session
◦ ASP.NET Core team provides SQLServer and Redis
IDataProtection
◦ Provide key management for encryption
◦ Encrypt http session
◦ By default, generate machine (=pod) specific key and store in local file
◦ ASP.NET Core team provides NFS, Redis and AzureStorage (Preview)
machine A
pod B
pod C
ASP.NET Core
ASP.NET Core
ASP.NET Core
Session Data
A’
Each pod has a different key.
Can’t decrypt session data
When loading another pod
from a different session
load with same id.
~/.aspnet
default implementation of IDataProtection
machine A
machine B
machine C
ASP.NET Core
ASP.NET Core
ASP.NET Core
Session Data
Use DataProtection.Redis
Configuration for Redis
public void ConfigureServices(IServiceCollection services)
{
// You can retrieve this connection string from Azure Portal.
var conn = Configuration["REDIS_CONNECTION_STRING"];
var redis = ConnectionMultiplexer.Connect(conn);
services.AddDataProtection()
.PersistKeysToRedis(redis, "DataProtection-Keys");
services.AddDistributedRedisCache(option =>
{
option.Configuration = conn;
option.InstanceName = "master";
});
services.AddSession();
}
httpsession.redis.cache.windows.net:6380,password=<password>,ssl=True,abortConnect=False
High Level Debugging .NET Core
58
GDB/LLDB
MICore
MIDE/Engine.Impl
MIDE(*)/AD7.Impl
VSCode Debugger
AD7 Interface
*MIDE: MIDebugEngine: GitHub repository
*vsdbg can be used only in VS products and might not be distributed.
MIText
VS Debugger
VS Debugger
Engine vsdbg
(closed license*)
windbg
See more:
Architecture of MIEngine
Remote Debugging .NET Core
vsdbg provided by Microsoft
◦ only trusted communication is required
◦ SSH is generally available
◦ VS remote debugger tools is also available on Windows
◦ Due to the license limitation, VS products (VS, VS Code, VS for mac) are only
available for debugging.
* Low level debugger is provided by Red Hat
◦ sos
◦ Not providing graphical debugger interface
59
Remote debugging to
a container on OpenShift
“oc rsh” is available instead of ssh
vsdbg should be manually installed
◦ install script is unavailable as s2i image doesn’t have unzip
◦ download vsdbg on local and rsync
see more detail in my wiki
Remote debug from Visual Studio Code
.vscode/launch.json
61
{
"name": ".NET Core Docker Remote Attach",
"type": "coreclr",
"request": "attach",
“processId”: “1”,
"pipeTransport": {
"pipeProgram": “oc",
“pipeArgs”: [ “rsh”, “-T”, “tanaka733@centos.example.com”],
“quoteArgs”:false,
“debuggerPath”: “/opt/app-root/src/vsdbg/vsdbg”,
"pipeCwd": "${workspaceRoot}"
},
"sourceFileMap": {
"/opt/app-root/src": "${workspaceRoot}“
}
}
Summary
OpenShift on Azure
◦ Reference Architecture is a good place to start.
◦ More Azure features available-- Authenticating with OpenID and others
.NET Core 2.0/ASP.NET Core 2.0 on OpenShift
◦ csproj support
◦ cronjob for .NET Core console app
◦ OpenShift secret & configuration. ASP.NET Core environment
◦ Remote debugging

More Related Content

What's hot (20)

PPTX
Docker OpenStack Cloud Foundry
Animesh Singh
 
PDF
Getting Started With Docker | Docker Tutorial | Docker Training | Edureka
Edureka!
 
PDF
Kubernetes Architecture - beyond a black box - Part 1
Hao H. Zhang
 
PDF
Docker for Java Developers
Imesh Gunaratne
 
PDF
Docker up &amp; running
Le Thi
 
PDF
Java is Container Ready - Vaibhav - Container Conference 2018
CodeOps Technologies LLP
 
PDF
Gentle introduction to containers and kubernetes
Nills Franssens
 
ODP
DevOps @ OpenShift Online
OpenShift Origin
 
PDF
DCEU 18: Docker Enterprise Platform and Architecture
Docker, Inc.
 
PDF
Openbar 7 - Leuven - OpenShift - The Enterprise Container Platform - Piros
Openbar
 
PDF
A DevOps guide to Kubernetes
Paul Czarkowski
 
PDF
Multi-Container Apps spanning Docker, Mesos and OpenStack
Docker, Inc.
 
PDF
Docker meetup-20-apr-17-openshit
Yusuf Hadiwinata Sutandar
 
PDF
Kubernetes or OpenShift - choosing your container platform for Dev and Ops
Tomasz Cholewa
 
PPTX
Kubernetes day 2 Operations
Paul Czarkowski
 
PDF
Containers and microservices for realists
Karthik Gaekwad
 
PPTX
Hypervisor "versus" Linux Containers with Docker !
Francisco Gonçalves
 
PPTX
Open shift enterprise 3.1 paas on kubernetes
Samuel Terburg
 
PPTX
Cloud Foundry Diego: The New Cloud Runtime - CloudOpen Europe Talk 2015
David Soul
 
PDF
Journey to the devops automation with docker kubernetes and openshift
Yusuf Hadiwinata Sutandar
 
Docker OpenStack Cloud Foundry
Animesh Singh
 
Getting Started With Docker | Docker Tutorial | Docker Training | Edureka
Edureka!
 
Kubernetes Architecture - beyond a black box - Part 1
Hao H. Zhang
 
Docker for Java Developers
Imesh Gunaratne
 
Docker up &amp; running
Le Thi
 
Java is Container Ready - Vaibhav - Container Conference 2018
CodeOps Technologies LLP
 
Gentle introduction to containers and kubernetes
Nills Franssens
 
DevOps @ OpenShift Online
OpenShift Origin
 
DCEU 18: Docker Enterprise Platform and Architecture
Docker, Inc.
 
Openbar 7 - Leuven - OpenShift - The Enterprise Container Platform - Piros
Openbar
 
A DevOps guide to Kubernetes
Paul Czarkowski
 
Multi-Container Apps spanning Docker, Mesos and OpenStack
Docker, Inc.
 
Docker meetup-20-apr-17-openshit
Yusuf Hadiwinata Sutandar
 
Kubernetes or OpenShift - choosing your container platform for Dev and Ops
Tomasz Cholewa
 
Kubernetes day 2 Operations
Paul Czarkowski
 
Containers and microservices for realists
Karthik Gaekwad
 
Hypervisor "versus" Linux Containers with Docker !
Francisco Gonçalves
 
Open shift enterprise 3.1 paas on kubernetes
Samuel Terburg
 
Cloud Foundry Diego: The New Cloud Runtime - CloudOpen Europe Talk 2015
David Soul
 
Journey to the devops automation with docker kubernetes and openshift
Yusuf Hadiwinata Sutandar
 

Similar to Deep Dive OpenShitt on Azure & .NET Core on OpenShift (20)

PDF
Open shift on azure stack
Takayoshi Tanaka
 
PPTX
Microsoft Azure Hybrid Cloud - Getting Started For Techies
Aidan Finn
 
PPTX
Microsoft Azure News - March 2017
Daniel Toomey
 
PDF
New features of Azure Cloud Provider at OCP 3.10
Takayoshi Tanaka
 
PDF
Azure Cloud Dev Camp - App Platform
giventocode
 
PDF
9 - Making Sense of Containers in the Microsoft Cloud
Kangaroot
 
PPTX
6 Ways to Get More From Your Azure
C/D/H Technology Consultants
 
PPTX
6 Ways to Get More From Your Azure
Holly Plude
 
PPTX
6 Ways to Get More From Your Azure
C/D/H Technology Consultants
 
PDF
Major Cloud Providers - Azure.pdf new doc
VaradhaB
 
PPTX
Container Orchestration for .NET Developers
Mike Melusky
 
PPTX
Pieter de Bruin (Microsoft) - Welke technologie gebruiken bij implementatie M...
AFAS Software
 
PDF
Building Real World Application with Azure
divyapisces
 
PPTX
From legacy to Azure Service Fabric in 360h. Odessa.
Stas Lebedenko
 
PDF
Openshift Container Platform: First ItalyMeetup
Giuseppe Bonocore
 
PDF
New features of Azure Cloud Provider in OpenShift Container Platform 3.10
Takayoshi Tanaka
 
PDF
Red Hat Openshift on Microsoft Azure
John Archer
 
PPTX
App Innovation Circle Azure IaaS - 9th Dec
Raghuram Korukonda
 
PPTX
Manage your devices with Azure IoT...and more
Marco Parenzan
 
PPTX
Azure for SharePoint Developers - Workshop - Part 3: Web Services
Bob German
 
Open shift on azure stack
Takayoshi Tanaka
 
Microsoft Azure Hybrid Cloud - Getting Started For Techies
Aidan Finn
 
Microsoft Azure News - March 2017
Daniel Toomey
 
New features of Azure Cloud Provider at OCP 3.10
Takayoshi Tanaka
 
Azure Cloud Dev Camp - App Platform
giventocode
 
9 - Making Sense of Containers in the Microsoft Cloud
Kangaroot
 
6 Ways to Get More From Your Azure
C/D/H Technology Consultants
 
6 Ways to Get More From Your Azure
Holly Plude
 
6 Ways to Get More From Your Azure
C/D/H Technology Consultants
 
Major Cloud Providers - Azure.pdf new doc
VaradhaB
 
Container Orchestration for .NET Developers
Mike Melusky
 
Pieter de Bruin (Microsoft) - Welke technologie gebruiken bij implementatie M...
AFAS Software
 
Building Real World Application with Azure
divyapisces
 
From legacy to Azure Service Fabric in 360h. Odessa.
Stas Lebedenko
 
Openshift Container Platform: First ItalyMeetup
Giuseppe Bonocore
 
New features of Azure Cloud Provider in OpenShift Container Platform 3.10
Takayoshi Tanaka
 
Red Hat Openshift on Microsoft Azure
John Archer
 
App Innovation Circle Azure IaaS - 9th Dec
Raghuram Korukonda
 
Manage your devices with Azure IoT...and more
Marco Parenzan
 
Azure for SharePoint Developers - Workshop - Part 3: Web Services
Bob German
 
Ad

More from Takayoshi Tanaka (20)

PDF
deep dive distributed tracing
Takayoshi Tanaka
 
PPTX
202202 open telemetry .net handson
Takayoshi Tanaka
 
PPTX
202109-New_Relic-for-csharp-engineers
Takayoshi Tanaka
 
PDF
20210129 azure webapplogging
Takayoshi Tanaka
 
PDF
20201127 .NET 5
Takayoshi Tanaka
 
PPTX
Unity(再)入門
Takayoshi Tanaka
 
PPTX
最近のQ#について
Takayoshi Tanaka
 
PDF
SRENEXT 2020 [B5] New RelicのSREに学ぶ SREのためのNew Relic活用法
Takayoshi Tanaka
 
PDF
20191024 Get Start gRPC with ASP.NET
Takayoshi Tanaka
 
PDF
New Relicで始める、.NET Applications on AWSのObservability
Takayoshi Tanaka
 
PPTX
C#エンジニアのためのdocker kubernetesハンズオン (再)
Takayoshi Tanaka
 
PPTX
20190806 Q# Measurements
Takayoshi Tanaka
 
PPTX
C#エンジニアのためのdocker kubernetesハンズオン
Takayoshi Tanaka
 
PDF
20190604 Containerized MagicOnion on kubernetes with Observability with New R...
Takayoshi Tanaka
 
PDF
.NET Core向けコンテナおよびデバッグ関連のVisual Studio 2019の機能
Takayoshi Tanaka
 
PDF
.NET Core向けコンテナおよびデバッグ関連のVisual Studioの新機能
Takayoshi Tanaka
 
PDF
Try! Visual Studio 209 git feature
Takayoshi Tanaka
 
PDF
Q#基礎 ver1.1
Takayoshi Tanaka
 
PDF
(過去バージョン) Q#基礎 ver1.0
Takayoshi Tanaka
 
PDF
ゼロから始めるQ#
Takayoshi Tanaka
 
deep dive distributed tracing
Takayoshi Tanaka
 
202202 open telemetry .net handson
Takayoshi Tanaka
 
202109-New_Relic-for-csharp-engineers
Takayoshi Tanaka
 
20210129 azure webapplogging
Takayoshi Tanaka
 
20201127 .NET 5
Takayoshi Tanaka
 
Unity(再)入門
Takayoshi Tanaka
 
最近のQ#について
Takayoshi Tanaka
 
SRENEXT 2020 [B5] New RelicのSREに学ぶ SREのためのNew Relic活用法
Takayoshi Tanaka
 
20191024 Get Start gRPC with ASP.NET
Takayoshi Tanaka
 
New Relicで始める、.NET Applications on AWSのObservability
Takayoshi Tanaka
 
C#エンジニアのためのdocker kubernetesハンズオン (再)
Takayoshi Tanaka
 
20190806 Q# Measurements
Takayoshi Tanaka
 
C#エンジニアのためのdocker kubernetesハンズオン
Takayoshi Tanaka
 
20190604 Containerized MagicOnion on kubernetes with Observability with New R...
Takayoshi Tanaka
 
.NET Core向けコンテナおよびデバッグ関連のVisual Studio 2019の機能
Takayoshi Tanaka
 
.NET Core向けコンテナおよびデバッグ関連のVisual Studioの新機能
Takayoshi Tanaka
 
Try! Visual Studio 209 git feature
Takayoshi Tanaka
 
Q#基礎 ver1.1
Takayoshi Tanaka
 
(過去バージョン) Q#基礎 ver1.0
Takayoshi Tanaka
 
ゼロから始めるQ#
Takayoshi Tanaka
 
Ad

Recently uploaded (20)

PDF
CIFDAQ Market Wrap for the week of 4th July 2025
CIFDAQ
 
PDF
"Beyond English: Navigating the Challenges of Building a Ukrainian-language R...
Fwdays
 
PDF
Go Concurrency Real-World Patterns, Pitfalls, and Playground Battles.pdf
Emily Achieng
 
PPTX
WooCommerce Workshop: Bring Your Laptop
Laura Hartwig
 
PPTX
Webinar: Introduction to LF Energy EVerest
DanBrown980551
 
PPTX
Building Search Using OpenSearch: Limitations and Workarounds
Sease
 
PPTX
Designing Production-Ready AI Agents
Kunal Rai
 
PDF
Empower Inclusion Through Accessible Java Applications
Ana-Maria Mihalceanu
 
PDF
DevBcn - Building 10x Organizations Using Modern Productivity Metrics
Justin Reock
 
PDF
Newgen 2022-Forrester Newgen TEI_13 05 2022-The-Total-Economic-Impact-Newgen-...
darshakparmar
 
PDF
Biography of Daniel Podor.pdf
Daniel Podor
 
PPTX
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
PDF
CIFDAQ Market Insights for July 7th 2025
CIFDAQ
 
PPTX
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
PDF
Achieving Consistent and Reliable AI Code Generation - Medusa AI
medusaaico
 
PDF
What Makes Contify’s News API Stand Out: Key Features at a Glance
Contify
 
PDF
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
PDF
Transcript: New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
PDF
Transforming Utility Networks: Large-scale Data Migrations with FME
Safe Software
 
PPTX
OpenID AuthZEN - Analyst Briefing July 2025
David Brossard
 
CIFDAQ Market Wrap for the week of 4th July 2025
CIFDAQ
 
"Beyond English: Navigating the Challenges of Building a Ukrainian-language R...
Fwdays
 
Go Concurrency Real-World Patterns, Pitfalls, and Playground Battles.pdf
Emily Achieng
 
WooCommerce Workshop: Bring Your Laptop
Laura Hartwig
 
Webinar: Introduction to LF Energy EVerest
DanBrown980551
 
Building Search Using OpenSearch: Limitations and Workarounds
Sease
 
Designing Production-Ready AI Agents
Kunal Rai
 
Empower Inclusion Through Accessible Java Applications
Ana-Maria Mihalceanu
 
DevBcn - Building 10x Organizations Using Modern Productivity Metrics
Justin Reock
 
Newgen 2022-Forrester Newgen TEI_13 05 2022-The-Total-Economic-Impact-Newgen-...
darshakparmar
 
Biography of Daniel Podor.pdf
Daniel Podor
 
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
CIFDAQ Market Insights for July 7th 2025
CIFDAQ
 
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
Achieving Consistent and Reliable AI Code Generation - Medusa AI
medusaaico
 
What Makes Contify’s News API Stand Out: Key Features at a Glance
Contify
 
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
Transcript: New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
Transforming Utility Networks: Large-scale Data Migrations with FME
Safe Software
 
OpenID AuthZEN - Analyst Briefing July 2025
David Brossard
 

Deep Dive OpenShitt on Azure & .NET Core on OpenShift

  • 1. Deep Dive OpenShift on Azure & .NET Core on OpenShift Takayoshi Tanaka @TanakaTakayoshi Red Hat K.K. (Japan) [email protected]
  • 2. Notes: This slide is available online. As I have tested at OCP 3.5 and .NET Core 2.0 preview2, something will be changed at the latest OCP 3.6 and .NET Core 2.0 RTM. If you have any question or comments, feel free to contact me: email: [email protected] Twitter: @TanakaTakayoshi
  • 3. Background Red Hat K.K. (Japan) ◦ Software Maintenance Engineer ◦ OpenShift ◦ Red Hat solutions on Azure ◦ .NET Core on RHEL Personal ◦ Microsoft MVP for VSDT ◦ C# Lang, .NET Core on Linux ◦ Blogs: ◦ Red Hat Developers ◦ Personal Blog “Silver light and Blue sky” VSDT: Visual Studio & Development Technologies
  • 4. Goal ◦ Learn about OpenShift on Azure Reference Architecture ◦ How to integrate Azure Features with OpenShift ◦ .NET Core 2.0/integrating OpenShift features with ASP.NET Core
  • 6. Reference Architecture Document is now available ◦ Deploying Red Hat OpenShift Container Platform 3 on Microsoft Azure
  • 8. OpenShift Ansible - Azure ARM Template
  • 9. Installation Summary 1 • ARM Template for Azure Resources (VM, LB, NW…) 2 • Custom Script Extension with ARM • generate config. files & execute ansible 3 • Ansible Installer for OpenShift
  • 10. Known Issue Available only in the Azure Marketplace VM • duplicated billing. Custom image (.vhd) is on the roadmap. No official Red Hat is available (self-support only) • You should troubleshoot by yourself. The OpenShift VM configuration is fixed • 3 masters with etcd (same hosts), 3 infra nodes, 3+ nodes, 1 bastion
  • 16. VMs 1 bastion 3 masters with etcd 3 infra nodes (router/docker registry) 3+ nodes Support request required for increasing cpu core limit. This limitation is due to design of ARM template. You can install all-in-one OpenShift on 1 host (not supported)
  • 17. Examples: Integrating Azure Features Availability Set Azure Load Balancer ◦ master endpoint ◦ backend is a group of masters ◦ routing endpoint ◦ backend is a group of infra nodes (routers) Azure VHD for Persistent Volume (PV) ◦ Virtual Hard Disk for Azure VM (VHD) ◦ Dynamic provisioning Available at OCP 3.5+
  • 18. How does Azure VHD for PV work? node service /etc/azure.conf 1. node service receives Volume Mount request 2. Load azure.conf (API auth etc) 3. (if dynamic provisioning) Create an empty VHD 4. Mount VHD to Azure VM 5. Create filesystem if needed 6. Mount filesystem to container Depending on kubernetess Azure Volume Plugin VHD attach
  • 19. How to configure azure.conf See the document for more detail. Easy 3 steps with Azure CLI 2.0 $ az account list -o json //Retrieve tenantID & id $ az group show --name <ResourceGroupName> -o json //Retrieve id & location $ az ad sp create-for-rbac --name <ResourceGroupName> --role contributor --scopes "<Resource Id>“ -o json //Retrieve appId, password
  • 20. Azure VHD for PV Notes Managed Disk is unavailable ◦ kubernetes Azure Disk plugin is not supported Managed Disk Be sure to confirm VM name to hostname ◦ Also specification of kubernetes plugin Configure DNS yourself ◦ VMs can be communicate with their VM name. ◦ If not using Azure internal DNS ◦ If using VNET peering or other
  • 21. More Azure Features Azure Active Directory Open ID Connect ◦ authentication for master ◦ LDAP integration with AAD+AAD DS or AD is also available. Azure Blob Storage for OpenShift internal docker registry ◦ object storage is suitable for docker registry storage Azure File Storage ◦ File storage is also available for PV ◦ Linux kernel CIFS module with SMB 3 is still experimental Operation Management Suite integration ◦ Log Analysis also available for containers
  • 22. How to set up OpenID connect? Create Azure AD App using the Microsoft Azure portal
  • 23. How to set up LDAP auth with AD? Option A) AAD + AAD DS + (VNET peering or VNET-to-VNET VPN) * AAD DS only supports Classic VNET and requires private network from ARM VNET. AAD AAD DS classic VNET ARM VNET OCP master ldap://xx.xx.xx.xx/
  • 24. AAD DS configuration example - name: "aad_ds_provider" challenge: true login: true mappingMethod: claim provider: apiVersion: v1 kind: LDAPPasswordIdentityProvider attributes: id: - dn email: - userPrincipalName name: - cn preferredUsername: - cn bindDN: "cn=adadmin,ou=AADDC Users,DC=example,DC=onmicrosoft,DC=com" bindPassword: "<password>" insecure: true url: "ldap://XXX.XX.XX.XX/OU=AADDC Users,DC=example,DC=onmicrosoft,DC=com? userPrincipalName?sub?(memberof=CN=ocpgroup,OU=AADDC Users,DC=example,DC=onmicrosoft,DC=com)" master-config.yaml ou: AADDC Users AAD default OU userPrincipalName will be email
  • 25. How to set up LDAP auth with AD? Option B) on premise AD + VPN Connect on premise Network and ARM Network with VPN. AD on premise NW ARM NW OCP master ldap://xx.xx.xx.xx/
  • 26. Storage Technology Comparison Type References Notes Azure Blob Storage Object storage Extended Registry Configuration Microsoft Azure storage driver Deploying Your Own Private Docker Registry on Azure Azure Blob Storage Only Available for docker registry storage Azure VHD Filesystem on external Disk Persistent Storage Using Azure Disk Configuring for Azure About disks and VHDs for Azure Linux VMs Depends on k8s plugin Azure File Storage NFS Persistent Storage Using Azure File Configuring for Azure How to use Azure File Storage with Linux Depends on k8s plugin Experimental. External NFS service NFS N/A Should maintain yourself or buy 3rd party service.
  • 27. Operation Management Suite (OMS) Log Analysis & other features for on-premised to cloud Containers (Preview) solution in Log Analytics now support OpenShift
  • 28. Installing OMS Agent Adding OMS agent directly on Linux Host Or, install agent as a OpenShift daemonset
  • 30. Future: Windows Container? No roadmap: Windows Container kubernets has roadmap for working with Windows Container “Capability” is existing.
  • 33. .NET Core Inside 36 .NET Core App (C#/VB) IL Assembly (exe, dll) Roslyn CoreFX (.NET Core Class Library) ManagedUnmanaged OS Native ABI etc (F#) compile r CoreCLR (.NET Core Runtime) .NET Core SDK Tools
  • 34. .NET Core on OpenShift s2i build ◦ “Source code in the Git repo” To “docker Image” ◦ can run out of OpenShift s2i image ◦ parameters for simple customize ◦ more customization are available with s2i scripts Template project ◦ Start .NET Core on OpenShift with few clicks at the portal ◦ All in one: deploymentconfig, service, route etc…
  • 35. s2i build & deploy flow builder pod SCM(git) internal registry deployer pod pod deploymentConfigbuildConfig $ dotnet build $ dotnet publish $ dotnet <dll>
  • 36. .NET Core 2.0 launch start today! rh-dotnet supports csproj at .NET Core 2.0 ◦ rpm version will be available ◦ s2i for .NET Core 2.0 & ASP.NET Core 2.0 ◦ Runtime image & s2i image (s2i image only at 1.x) More new features coming ◦ Announcing .NET Standard 2.0 ◦ Announcing .NET Core 2.0 ◦ Introducing ASP.NET Core 2.0 ◦ Announcing Entity Framework Core 2.0
  • 37. Use Case Examples ◦Schedule Jobs with .NET Core ◦Switching Configuration for Dev & Prod Environment ◦Razor Page & C# 7.1 ◦Redis for HTTP Session storage with multi pods Notes: All examples are built on .NET Core 2.0 preview. We’re actively working on it now.
  • 38. Schedule Job with .NET Core Run .NET Core Console App as a cron job: Cron Jobs Example Repository Web portal does not support cron jobs, so use the CLI. $ oc create imagestream cronjobexample $ oc create -f cronjob-buildconfig.yaml $ oc create -f cronjob.yaml
  • 39. Schedule Jobs with .NET Core spec: containers: - command: - /opt/rh/rh-dotnet20/root/bin/dotnet - bin/Release/netcoreapp2.0/CronJobExample.dll image: 172.30.142.2:5000/london-openshift/cronjobexample:latest imagePullPolicy: Always name: lipsum-cron resources: {} restartPolicy: Never securityContext: {} terminationGracePeriodSeconds: 30 schedule: '*/1 * * * *' command to execute: should be the full path command to execute: *scl should be enabled. To be fixed in my example image should be specified with full URL OCP 3.6 will support imagestreamtag. Replace 172.30.142.2:5000 with your internal registry’s IP and port
  • 40. Switching Configuration for Dev & Prod Environment How to treat different environments with one code ◦ Connect to different database ◦ Use Redis as a cache - only in a production environment ◦ Integrate with a different OpenID account Use Environment feature in ASP.NET Core ◦ Specified by environment variables. Configuration can be injected specific to each environment.
  • 41. Switching with Environment Startup class • constructor • Configure method • ConfigurreService method Check IHostingEnvironment Can’t inject IHostingEnvironment into ConfigerService method
  • 45. Loading configuration from Secret use OpenShift secret feature.
  • 46. Razor Page + C# 7.1 RazorPage: ◦ Simpler application than original MVC: “Page-focused scenarios” ◦ WebMatrix like easy development ◦ Razor Page is enabled with MVC C# 7.1: ◦ available at .NET Core 2.0 & ASP.NET Core 2.0 ◦ C# 7.1 in Razor page is not working at Preview 2 by bug (see issue) ◦ It should be fixed at 2.0 RTM.
  • 47. HTTP session for multi pods By default: ◦ Sticky session: request goes to the same pod in same user session ◦ HTTP session is stored in the memory of each pod ◦ HTTP session is encrypted by pod specific key It means: When a pod has died, a user session will be lost.  How to keep HTTP session
  • 48. IDistributedCache & IDataProtection IDistributedCache ◦ Provide distribution cache ◦ Available for storing session ◦ ASP.NET Core team provides SQLServer and Redis IDataProtection ◦ Provide key management for encryption ◦ Encrypt http session ◦ By default, generate machine (=pod) specific key and store in local file ◦ ASP.NET Core team provides NFS, Redis and AzureStorage (Preview)
  • 49. machine A pod B pod C ASP.NET Core ASP.NET Core ASP.NET Core Session Data A’ Each pod has a different key. Can’t decrypt session data When loading another pod from a different session load with same id. ~/.aspnet default implementation of IDataProtection
  • 50. machine A machine B machine C ASP.NET Core ASP.NET Core ASP.NET Core Session Data Use DataProtection.Redis
  • 51. Configuration for Redis public void ConfigureServices(IServiceCollection services) { // You can retrieve this connection string from Azure Portal. var conn = Configuration["REDIS_CONNECTION_STRING"]; var redis = ConnectionMultiplexer.Connect(conn); services.AddDataProtection() .PersistKeysToRedis(redis, "DataProtection-Keys"); services.AddDistributedRedisCache(option => { option.Configuration = conn; option.InstanceName = "master"; }); services.AddSession(); } httpsession.redis.cache.windows.net:6380,password=<password>,ssl=True,abortConnect=False
  • 52. High Level Debugging .NET Core 58 GDB/LLDB MICore MIDE/Engine.Impl MIDE(*)/AD7.Impl VSCode Debugger AD7 Interface *MIDE: MIDebugEngine: GitHub repository *vsdbg can be used only in VS products and might not be distributed. MIText VS Debugger VS Debugger Engine vsdbg (closed license*) windbg See more: Architecture of MIEngine
  • 53. Remote Debugging .NET Core vsdbg provided by Microsoft ◦ only trusted communication is required ◦ SSH is generally available ◦ VS remote debugger tools is also available on Windows ◦ Due to the license limitation, VS products (VS, VS Code, VS for mac) are only available for debugging. * Low level debugger is provided by Red Hat ◦ sos ◦ Not providing graphical debugger interface 59
  • 54. Remote debugging to a container on OpenShift “oc rsh” is available instead of ssh vsdbg should be manually installed ◦ install script is unavailable as s2i image doesn’t have unzip ◦ download vsdbg on local and rsync see more detail in my wiki
  • 55. Remote debug from Visual Studio Code .vscode/launch.json 61 { "name": ".NET Core Docker Remote Attach", "type": "coreclr", "request": "attach", “processId”: “1”, "pipeTransport": { "pipeProgram": “oc", “pipeArgs”: [ “rsh”, “-T”, “[email protected]”], “quoteArgs”:false, “debuggerPath”: “/opt/app-root/src/vsdbg/vsdbg”, "pipeCwd": "${workspaceRoot}" }, "sourceFileMap": { "/opt/app-root/src": "${workspaceRoot}“ } }
  • 56. Summary OpenShift on Azure ◦ Reference Architecture is a good place to start. ◦ More Azure features available-- Authenticating with OpenID and others .NET Core 2.0/ASP.NET Core 2.0 on OpenShift ◦ csproj support ◦ cronjob for .NET Core console app ◦ OpenShift secret & configuration. ASP.NET Core environment ◦ Remote debugging

Editor's Notes

  • #2: Hello, my name is Takayoshi Tanaka. Today I talk about Deep Dive OpenShift on Azure and .NET Core on OpenShift.
  • #4: Let’s me give my background. I work for Red Hat K K in Japan. My position is a Software Maintenance Engineer. My focus is OpenShift, Red Hat solutions on Azure and .NET Core on RHEL. In personal, I’m a Microsoft MVP for Visual Studio and Development Technologies. I’m interested in C# language and .NET Core on Linux. I write blogs in Red Hat Developers and Personal Blog “Silver light and Blue Sky”.
  • #5: My goal for the audience is, leaning about OpenShift on Azure Reference Architecture. Being able to know how to integrate Azure Features with OpenShift, and .NET Core 2.0. integrating OpenShift features with Asp.NET Core.
  • #6: The first thing is deploying OpenShift on Azure.
  • #7: Red Hat released the reference architecture document for deploying OpenShift on Azure.
  • #8: Azure has similar services with OpenShift. You can run your applications on PaaS and CaaS. CaaS means Container as a Service. OpenShift is a CaaS. And Azure Container services and Service Fabric are also CaaS. And recently Microsoft released new CaaS “Azure Container Instances”. OpenShift based on RHEL OS Virtual Machines. We support both on Azure Stack and Azure Public Cloud.
  • #9: You can install this reference architecture from this repository. This repository is an ARM template. When you click the deploy button, you’ll see this form. After you fill in all parameters, the install process begins.
  • #10: There are three steps in installation. At first, ARM Template creates Azure resources such as Virtual Machines, Load Balancers, Networks and so on. Second, Custom Script Extension will generate configuration files and execute ansible playbook. At last, this ansible installer installs OpenShift.
  • #11: However, there are known issues. This ARM template only supports marketplace VM. It will be duplicated billing. Supports custom VHD is on roadmap. This template is unofficial support, so you should troubleshoot by yourself. Then it’s fixed VM configuration and you can’t change it. Three masters with etcd at the same hosts, three infra nodes, three and more nodes and one bastion server.
  • #12: Here is the architecture diagram. Let’s explain each component.
  • #13: Here is a bastion server. This is the only VM accessible from the Internet. You will operate everything on this VM.
  • #14: There are two external Azure Load Balancers. One is for OpenShift API and web portal. The backend is master servers with Availability Sets. Etcd is located at the same host.
  • #15: The other external Azure Load Balancer is public endpoint for accessing your applications. The backend is infra nodes with availability set. Router and docker-registry run on these nodes.
  • #16: The last component is a node server with availability set. Your application pods run on these nodes.
  • #17: So you have to launch at least ten VMs. Also, you may have to make support request to Microsoft in order to increase cpu core limit. This limitation is not due to OpenShift itself, but due to design of ARM template. For example, you can install all-in-one OpenShift on one host.
  • #18: This reference architecture uses Azure Features to integrate with OpenShift. Availability Set and Load Balancer are told before. Another one is Azure VHD for Persistent Volume, PV.
  • #19: It’s a little complicated how Azure VHD for PV works. At first, this feature is depends on kubernetes Azure Volume plugin. This plugin works as follows. Node service receives Volume Mount request. Then load azure.conf file and create an empty VHD if dynamic provisioning is enabled. Next, mount VHD to Azure VM where node is running. If needed, create filesystem. Finally, mount filesystem to the container.
  • #20: Sometimes, you may have to create azure.conf file manually. It’s not difficult. You can follow three steps with Azure CLI 2.0.
  • #21: When you use Azure VHD for Persistent Volume, you may pay attention somethings. At first, managed disk is unavailable. kubernetes plugin doesn’t support Managed Disk now. And your Azure VM name must be same as hostname. Then, it’s not mandatory but I recommend use Azure internal DNS, because Virtual Machines must be able to communicate with their VM name. Azure internal DNS can do it without any configuration. If you don’t use Azure internal DNS for example when you use VNET Peering, you must configure DNS by yourself.
  • #22: There are more Azure feature which are not used in the reference architecture. I’ll explain some of them. If you use Azure Active Directory, you can use it for authenticating master API with Open ID connect. Also, if you prefer LDAP authentication, Azure Active Directory Domain Services is available. Or you can use on-premised Active Directory. OpenShift has an internal docker registry. Azure Blob Storage is available for this registry’s storage. Generally speaking, object storage such an Azure Blob Storage is suitable for docker registry storage. Azure File Storage is also available for Persistent Volume. However, it depends on Linux kernel CIFS module, which is still experimental in SMB 3 protocol.
  • #23: To set up an OpenID, it’s the easiest way to create an AAD app in Azure Portal page. You can see the endpoints here. Also, you should set up Reply URLs and Keys.
  • #24: If you prefer LDAP authentication, you have two options. When you want to use AAD, you can use optionA. AAD itself doesn’t have LDAP mechanism, but you can do this with AAD Domain Services. However, AAD DS is only available for Classic Vnet at this point. So you should connect classic VNET and ARM Vnet. You can connect them by VNet peering or VNET-to-VNET VPN.
  • #25: Here is an example configuration for LDAP authentication with AAD DS. Organization Unit should be “AADDC User”, which is default value on AAD. usually you can’t change this Organization Unit as far as you use only AAD. Also, userPrincipalName will be the value of email.
  • #26: When you prefer to use your on-premised AD, you should connect by VPN to use LDAP authentication.
  • #27: There are several Azure services you can use for storage in OpenShift. Azure Blob Storage is only available for internal docker registry’s storage. However, this object storage is suitable for docker registry. This feature depends on docker registry driver provided by docker. Other two features both depend on kubernetes plugin. The one is Azure VHD, which I told before. The other is Azure File Storage. However it’s experimental. Also, you can use external NFS Server in and out of Azure. You can construct and maintain your own NFS Server or use NFS as a Service from third party vendor.
  • #32: To collecting and analyzing logs, OpenShift provides EFK stack. Also, Azure provides OMS. You can see OpenShift logs with OMS Agent. To use OMS agent, after creating an OMS workspace, you have only to connect VM from Azure portal page.
  • #33: You can also see the container logs in OMS workspace. You have only to add container solution in OMS portal.
  • #34: We’re sometime asked the future of integrating with Windows container. However, the answer is “we have no roadmap for Windows container”. As kubernetes is working for Windows container, we can show a capability to run Windows Container on OpenShift. However, please note it’s not a road map at this point.
  • #35: Welcome back to my talk. The second part is about .NET Core on OpenShift.
  • #37: ABI: Application Binary Interface
  • #38: What is the reason for using .NET Core on RHEL? One is Red Hat software collections. .NET Core on RHEL ships in this software collections. Usually it’s included in RHEL subscription, so you can use .NET Core without extra cost. Also, we’re tracking Bugs not only for upstream GitHub but also Red Hat Bugzilla.
  • #39: Red Hat provides and supports .NET Core SDK for RHEL. RHEL Server subscription includes .NET Core. Not only Red Hat provides .NET Core, but also OpenShift supports .NET Core. S2i means Source code in the git repository to docker image. s2i can run out of OpenShift. S2i requires the base docker image to run build process. Red Hat provides an official s2i image for .NET Core. It can be customized to add parameters or add scripts. OpenShift provides a template project for .NET Core and ASP.NET Core, so you can start .NET Core and ASP.NET Core on OpenShift with few clicks.
  • #40: This is a figure how s2i works. At first, a builder pod will clone source code and build it. After generating a dotnet binary, builder pod creates a application docker image with this binary and pushes this image to internal registry. Once build is finished, deployer pod will start. Deployer pod will create an application container from pushed docker image, and run the dotnet application.
  • #41: .NET Core will be coming soon, maybe this autumn. Red Hat .NET Core will support csproj style build tools at .NET Core 2.0. s2i also supports .NET Core 2.0 and ASP.NET Core 2.0. More new feature are coming.
  • #42: From now, I’ll explain four use case examples. I’m now working for another examples.
  • #43: When you want to execute .NET Core application as a scheduled job, you can use cron job in OpenShift. Web portal hasn’t supported cronjob yet, so you should create resource from CLI.
  • #44: Here are two points to pay attention. One is specify the dotnet path as an absolute path. The other is specifying docker image as a full URL. You will be able to specify with Image Stream Tag at OCP 3.6.
  • #45: Sometime you want to treat different environments with one code. For example, connecting to different database on development and production. Using Redis as a cache only in production. Using different OpenID account for development and production. In this case, you can use environment feature in ASP.NET Core and it can be integrated with OpenShift.
  • #46: This example shows how you check the current environment in the code. Startup class is a key calss for ASP.NET Core and it has three important member: a constructor, configure method and configureservice method. IHostingEnvironment can be injected into constructor and Configure methods. So you can check EnvironmentName property.
  • #47: However, as ConfigureService method can’t be injected IHostingEnvironment, you can define different methods for each environment.
  • #48: Configure method can also be defined with environment specific methods.
  • #49: Also, when you want to pass some values from Environment Variable, you can use “AddEnvironmentVariables” method. To set environment variables, you can use Visual Studio or Visual Studio Code during developing on your local machine. In the OpenShift you can set on the Portal page or CLI.
  • #50: Sometimes you don’t want to store configuration in the repository, you can use OpenShift Secret feature. The application can read secret values from external file or environment variable. This example shows secret values are injected to environment variable and application read these value s from environment variable.
  • #51: Next is Razor page example. This is a new feature at ASP.NET Core 2.0. Also, C# 7.1 will be available at .NET Core 2.0. However, C# 7.1 is not available in Razor page due to a bug. It’ll be fixed at RTM.
  • #52: Usually you will run your application with multiple pods. When you use HTTP session by default configuration, session is sticky by default router configuration. Http session is stored in the memory and encrypted by pod specific key. It means, when a pod has died, a user session will be lost. In this case, you may want to store session data external. But you should pay attention.
  • #53: There are two key points in storing HTTP session. You must configure both of them. IDistibutedCache provides distribution cache to store session across multiple servers. IDataProtection provides key management for encryption. Redis supports both services.
  • #54: When you only configure Idistribution cache to use Redis, HTTP session can’t be shared across pods. This is because the encrypted key is generated and stored in each pod. These keys are different.
  • #55: You must configure DataProtection to use Redis. After doing so, the encryption key is stored in Redis and all pods use this key.
  • #56: Here is an example to configure Redis. In this example, I use Azure Redis service. Off course, you can run Redison OpenShift and you will get redis ip and port from environment variables when you run redis on OpenShift.
  • #59: Here is a inside of a debugger. On Windows, Visual Studio contains a VS Debugger and also works as a debugger frontend. On Linux, Visual Studio Code works similarly. Visual Studio Code contains debugger called vsdbg. It is constructed as an Open Source Project MIDebug Engine and depends on GDB and LLDB. Even more remarkable, debugger has a same interface on Windows and Linux. So Visual Studio can remote debug to .NET Core running on Linux and Visual Studio Code on Linux can remote debug to .NET Core running on Windows.
  • #70: In summary, Thank you for listening today. Have a great day.