Search

Tag: GitHub

View:
Florent Appointaire

Remove a Kubernetes namespace blocked with Terminating status

Let’s talk about an issue of having your Kubernetes namespace blocked with terminating status. The problem may arise during an attempt to remove a namespace in Kubernetes. To terminate a namespace properly and avoid this scenario, a certain command in a more updated version of kubectl should be used.

Nicolas Prigent

Creating Custom Hyper-V Gallery

In Windows 10 Fall Creator Update, Microsoft introduced a new feature called the “Hyper-V Quick Create Wizard” which is very useful because you can create a Virtual Machine with the default settings and save time. Using this feature, you can create a VM with a single ISO file located on your system, or you can create a VM from the Online Gallery. By default, Quick Create will list a Windows 10 Developer Environment but you can easily add your own Virtual Machine Images from your local/online repository.

In this article, I will describe how to use this feature and how to add a custom VM Image into your own Gallery.

Florent Appointaire

[Azure] Continuous Integration / Continuous Deployment with Docker (ACS and ACR), Visual Studio Code, Visual Studio Team Services and GitHub

A major force of infrastructure today is the possibility to use CI/CD. Understand, Continuous Integration and Continuous Deployment. To resume, these technologies, give the possibility to your developers to create/modify their codes, send them to GitHub for example, build it with Visual Studio Team Services (VSTS), save it on you registry (Azure Container Registry for me), manage the versioning, always with VSTS, send it to your Docker Swarm cluster as container et to finish, access it through a simple web interface.

Charbel Nemnom

Getting Started with Azure Resource Manager and Azure Deployment – Part III

In part two of this multi part blog series, we covered the creation and configuration of a GitHub account, to host a GitHub repository for a Quick Start template, and then we examined Visual Studio Code integration with Git and lastly we pushed commits to a remote repository on GitHub.

In the final post, we will modify and deploy sample and custom template and parameter JSON files.

If you missed Part I and Part II, please make sure to check them here Part I and Part II before you continue with the last part.

Charbel Nemnom

Getting Started with Azure Resource Manager and Azure Deployment – Part II

In part one of this multi part blog series, we explained the benefits of Azure Resource Manager and resource groups in Azure V2 versus the Service Management API in Azure V1, then we looked in depth at JavaScript Object Notation (JSON) Quick Start templates. In the second part, Part II: we will create and configure a GitHub account, if you don’t already have one, to host a GitHub repository for a Quick Start template, and lastly we will examine Visual Studio Code integration with Git and push commits to a remote repository. In the final post, we will modify and deploy sample/custom template and parameter JSON files.
If you missed Part I, please make sure to check it here before you continue with this post.

Charbel Nemnom

Getting Started with Azure Resource Manager and Azure Deployment – Part I

Applications that are deployed in Microsoft Azure often comprise different but related cloud resources, such as virtual machines, web applications, SQL databases, virtual networks among others. Before the introduction of Azure Resource Manager (Azure V2), it was necessary to define and provision these resources imperatively. However, Azure Resource Manager gives you the ability to define and provision these resources with their configuration and associated parameters declaratively in a JavaScript Object Notation (JSON) template file, known as an Azure Resource Manager template.