Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions FromGitToGalleryWithOpenSource-MacInally/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Everything On-Prem: From Git to Gallery with Open Source

Slides and supporting material for my PowerShell + DevOps Global Summit 2026 session.

This folder contains the slide deck only. The full demo environment — Vagrantfile, provisioning scripts, nginx/Gitea/Nexus/lldap configs, the example `Certificates` PowerShell module, and the complete 40+ step walkthrough — lives in a separate repository:

**👉 https://github.com/lindnerbrewery/PsSummit2026_GitToGallery**

Head over there if you want to spin up the VM, follow along step by step, or rebuild the whole on-prem pipeline (Gitea + Actions + Nexus + LDAP + nginx) on your own infrastructure.

— Emrys MacInally (@lindnerbrewery)
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "D&D Character",
"type": "object",
"properties": {
"name": { "type": "string", "minLength": 2 },
"class": { "type": "string", "enum": ["Barbarian", "Bard", "Cleric", "Druid", "Fighter", "Monk", "Paladin", "Ranger", "Rogue", "Sorcerer", "Warlock", "Wizard"] },
"level": { "type": "integer", "minimum": 1, "maximum": 20 },
"race": { "type": "string" },
"stats": {
"type": "object",
"properties": {
"strength": { "type": "integer", "minimum": 1, "maximum": 30 },
"dexterity": { "type": "integer", "minimum": 1, "maximum": 30 },
"constitution": { "type": "integer", "minimum": 1, "maximum": 30 },
"intelligence": { "type": "integer", "minimum": 1, "maximum": 30 },
"wisdom": { "type": "integer", "minimum": 1, "maximum": 30 },
"charisma": { "type": "integer", "minimum": 1, "maximum": 30 }
},
"required": ["strength", "dexterity", "constitution", "intelligence", "wisdom", "charisma"]
}
},
"required": ["name", "class", "level", "race", "stats"]
}
Loading
Loading