Upload files to "AZ104/MicrosoftAureAdministrator"

From Instructors GitHub
This commit is contained in:
2023-10-06 04:36:07 -07:00
commit 1feb6f2e44
5 changed files with 133 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
MIT License
Copyright (c) 2019 Sidney Andrews
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@@ -0,0 +1,36 @@
name: '$(Date:yyyyMMdd)$(Rev:.rr)'
jobs:
- job: build_markdown_content
displayName: 'Build Markdown Content'
workspace:
clean: all
pool:
vmImage: 'Ubuntu 16.04'
container:
image: 'microsoftlearning/markdown-build:latest'
steps:
- task: Bash@3
displayName: 'Build Content'
inputs:
targetType: inline
script: |
cp /{attribution.md,template.docx,package.json,package.js} .
npm install
node package.js --version $(Build.BuildNumber)
- task: GitHubRelease@0
displayName: 'Create GitHub Release'
inputs:
gitHubConnection: 'github-microsoftlearning-organization'
repositoryName: '$(Build.Repository.Name)'
tagSource: manual
tag: 'v$(Build.BuildNumber)'
title: 'Version $(Build.BuildNumber)'
releaseNotesSource: input
releaseNotes: '# Version $(Build.BuildNumber) Release'
assets: '$(Build.SourcesDirectory)/out/*.zip'
assetUploadMode: replace
- task: PublishBuildArtifacts@1
displayName: 'Publish Output Files'
inputs:
pathtoPublish: '$(Build.SourcesDirectory)/out/'
artifactName: 'Lab Files'

View File

@@ -0,0 +1,19 @@
remote_theme: MicrosoftLearning/Jekyll-Theme
exclude:
- readme.md
- .github/
header_pages:
- index.html
author: Microsoft Learning
twitter_username: mslearning
github_username: MicrosoftLearning
plugins:
- jekyll-sitemap
- jekyll-mentions
- jemoji
markdown: kramdown
kramdown:
syntax_highlighter_opts:
disable : true
theme: jekyll-theme-slate

View File

@@ -0,0 +1,21 @@
---
title: Online Hosted Instructions
permalink: index.html
layout: home
---
# Content Directory
Required labs files can be [DOWNLOADED HERE](https://github.com/MicrosoftLearning/AZ-104-MicrosoftAzureAdministrator/archive/master.zip)
Hyperlinks to each of the lab exercises are listed below.
## Labs
{% assign labs = site.pages | where_exp:"page", "page.url contains '/Instructions/Labs'" %}
| Module | Lab |
| --- | --- |
{% for activity in labs %}| {{ activity.lab.module }} | [{{ activity.lab.title }}{% if activity.lab.type %} - {{ activity.lab.type }}{% endif %}]({{ site.github.url }}{{ activity.url }}) |
{% endfor %}

View File

@@ -0,0 +1,36 @@
# AZ-104: Microsoft Azure Administrator
## Welcome
- **[Link to labs (HTML format)](https://microsoftlearning.github.io/AZ-104-MicrosoftAzureAdministrator/)**
- **Are you a MCT?** - Have a look at our [GitHub User Guide for MCTs](https://microsoftlearning.github.io/MCT-User-Guide/)
## What are we doing?
- To support this course, we will need to make frequent updates to the course content to keep it current with the Azure services used in the course. We are publishing the lab instructions and lab files on GitHub to allow for open contributions between the course authors and MCTs to keep the content current with changes in the Azure platform.
- We hope that this brings a sense of collaboration to the labs like we've never had before - when Azure changes and you find it first during a live delivery, go ahead and make an enhancement right in the lab source. Help your fellow MCTs.
## How should I use these files relative to the released MOC files?
- The instructor handbook and PowerPoints are still going to be your primary source for teaching the course content.
- These files on GitHub are designed to be used in conjunction with the student handbook, but are in GitHub as a central repository so MCTs and course authors can have a shared source for the latest lab files.
- It will be recommended that for every delivery, trainers check GitHub for any changes that may have been made to support the latest Azure services, and get the latest files for their delivery.
## How do I contribute?
- Any MCT can submit a pull request to the code or content in the GitHub repro, Microsoft and the course author will triage and include content and lab code changes as needed.
- You can submit bugs, changes, improvement and ideas. Find a new Azure feature before we have? Submit a new demo!
## What about changes to the student handbook?
- This repository is only for Issues with the course labs. Comments on the course content should be posted on the MCT Courseware Forum.
## Notes
### Classroom Materials
It is strongly recommended that MCTs and Partners access these materials and in turn, provide them separately to students. Pointing students directly to GitHub to access Lab steps as part of an ongoing class will require them to access yet another UI as part of the course, contributing to a confusing experience for the student. An explanation to the student regarding why they are receiving separate Lab instructions can highlight the nature of an always-changing cloud-based interface and platform. Microsoft Learning support for accessing files on GitHub and support for navigation of the GitHub site is limited to MCTs teaching this course only.