Silver Light and Blue Sky

C# and Infrastructure. Code is everything.

Entries from 2017-01-01 to 1 year

Running a NuGet server on OpenShift

This post was originally published on Red Hat Developers, the community to learn, code, and share faster. To read the original post, click here. When you build your .NET Core project, NuGet packages are retrieved from nuget.org by default.…

Thank you for hearing my presentation at London OpenShift meetup

Today I have a chance to make a presentation at London OpenShift meetup. I have been in England with my family on vacation. www.meetup.com Here is my slide. Deep Dive OpenShitt on Azure & .NET Core on OpenShift from Takayoshi Tanaka www.sl…

Set up Azure Blob Storage for docker registry storage

Following my previous post, I’m explaining how to use Azure Blob Storage for OpenShift internal docker registry storage. tech.en.tanaka733.net

Creating demo cluster for OpenShift Container Platform 3.5 on Azure

Here is what I did for creating my demo cluster for OpenShift Container Platform 3.5 on Azure. Three masters with etcd (same hosts). These masters are also infra nodes. One node (We can add more nodes later if we need) One Azure Load Balan…

resource file naming in ASP.NET Core localization

While I'm reading the document, I found difficulty in resource file naming. Globalization and localization | Microsoft Docs To summarize first: "name" property of the project.json uses as the assembly name of the .NET Core project. The top…

Static file authorization in ASP.NET Core MVC

When we want to serve static file ins ASP.NET Core, we should have to read this document. Working with Static Files | Microsoft Docs Let's imagine serving some static protected files with authorization. These files are only accessible by a…