wiki.getshifting.com

--- Sjoerd Hooft's InFormation Technology ---

User Tools

Site Tools


start

SHIFT-WIKI - Sjoerd Hooft's InFormation Technology

This WIKI is my personal documentation blog. Please enjoy it and feel free to reach out through blue sky if you have a question, remark, improvement or observation. See below for the latest additions, or use the search or tags to browse for content.


AKS with Workload Identity

Summary: Workloads deployed on an Azure Kubernetes Services (AKS) cluster require Microsoft Entra application credentials or managed identities to access Microsoft Entra protected resources, such as a Azure Key Vault. Microsoft Entra Workload ID integrates with the capabilities native to Kubernetes to federate with external identity providers. On this page I'll show you how to quickly deploy an AKS cluster with workload identity enabled.
Date: 26 January 2025

I'll show you the following steps:

  • Deploy an AKS cluster using the Azure CLI with the OpenID Connect issuer and a Microsoft Entra Workload ID.
  • Create a Microsoft Entra Workload ID and Kubernetes service account.
  • Configure the managed identity for token federation.
  • Deploy a test workload and verify authentication with the workload identity.
  • Grant a pod in the cluster access to secrets in an Azure key vault.

All command shown here are done with powershell in the Azure Cloud Shell.

→ Read more...

2025/06/01 11:59

JavaScript Referrer

Summary: How to create a referrer (redirect) using javascript
Date: Around 2018
Refactor: 1 March 2025: Checked links and formatting.

Use this javascript to set a referrer, meaning that if a user visits a page directly it gets referred to the main page. This way you enforce users to always use the mainpage:

<script type="text/javascript">
if (document.referrer !== "http://mainpage.url.com/") {
    window.location.href = "http://mainpage.url.com/";
}
</script>
2025/06/01 11:59

AIX 6.1

Summary: ALthough AIX is by now on version 7.3 I find these old pages so fascinating I decided to keep them. On this page I'll install a standard AIX 6.1, which was probably done on a blade power system.
Date: Between 2010-2013
Refactor: 21 December 2024: Checked formatting.

→ Read more...

2025/06/01 11:59

ITIL

Summary: A post with an ITIL glossary.
Date: Around 2019
Refactor: 2 January 2025: Checked links and formatting.

→ Read more...

2025/06/01 11:59

<< Newer entries | Older entries >>

This wiki has been made possible by:

start.txt · Last modified: by sjoerd