GithubHelp home page GithubHelp logo

arc_jumpstart_docs's Introduction

Azure Arc Jumpstart documentation

Welcome to the Arc Jumpstart documentation repository! This repository is your go-to resource for in-depth guides, best practices, and detailed documentation related to Azure Arc. Whether you're a beginner exploring the basics or an experienced user optimizing your deployment, you'll find valuable insights tailored to your needs. This repository complements our source code repository and acts has the documentation source repository which populates the Arc Jumpstart website.

Arc Jumpstart logo

Note: This repository doesn't contain the source code for the automation scripts and tools of the Arc Jumpstart. The source code for Arc Jumpstart can be found in another dedicated repository.

What you'll find here

  • Documents: Arc Jumpstart markdown files utilized in scenarios and solutions, offering comprehensive technical information.
  • Visual Resources: Clear and concise screenshots providing visual context for easier comprehension of the documentation.
  • Supportive Documents and Files: Additional resources used across the Arc Jumpstart website, aiding in various contexts and providing supplemental information.

How to utilize this repository

This documentation repository is tailored for contributors and works in tandem with the our source code repository. While not mandatory, it's highly probable that contributors will need to clone both repositories to effectively contribute to Arc Jumpstart.

Before you start, we recommend familiarizing yourself with our comprehensive contribution guidelines. These guidelines outline the standards and practices we follow, ensuring consistency and quality across our documentation.

If you're unsure about your future contribution, don't hesitate to start a GitHub discussion. This is a great place to ask questions, share ideas, or get feedback on potential contributions. Our community is here to help and we welcome all levels of experience.

Happy contributing!

Branch guidance

The Arc Jumpstart docs repository handles branching similarly to most code repositories. Two primary branches are maintained, each one attached to a specific website slot (prod/canary).

The following branches are currently maintained:

Branch Website Description
main (primary) https://arcjumpstart.com/ Latest Arc Jumpstart release documentation. This is the latest documentation available in the deployed to the production slot.
canary (canary) https://preview.arcjumpstart.com/ Pre-release documentation. Doc updates should be merged to the canary branch for preview validation before merging to the main branch.

Cloning the repositories

To contribute, you'll likely need to clone both this repository and the source code repository. Use the following commands:

git clone https://github.com/Azure/arc_jumpstart_docs.git
git clone https://github.com/microsoft/azure_arc.git

As we continuously improve and expand Arc Jumpstart, we recommend keeping your local clones of the repositories up-to-date. You can do this by pulling the latest changes from the main branch:

git pull origin main

Contribution and feedback

Your input is highly valued! If you have suggestions, feedback, or valuable insights to share, feel free to open an issue. Your contributions help improve the documentation for the entire community.

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant Arc Jumpstart team the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.

When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (for example, status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using Microsoft's CLA.

This project has adopted the Microsoft Open Source Code of Conduct.

For more information see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.

Writing Guidelines

This repository uses vale.sh to help tech writers and contributors adhere to Microsoft's writing styling guidelines. Vale is a command-line tool that allows you to check your writing for grammar and spelling errors against a set of style rules.

For more information about Vale configuration, local usage and GitHub CI actions, check Wiki - Vale Integration.

Trademarks

This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft's Trademark & Brand Guidelines.

Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party's policies.

arc_jumpstart_docs's People

Contributors

430am avatar ajoint avatar alsanch avatar antonburschatfractalai avatar arpitjindal012 avatar basimoli11majeed avatar chintalavr avatar dependabot[bot] avatar dkirby-ms avatar duongthaiha avatar ewebster-fractal avatar fcabrera23 avatar hariarun18 avatar janegilring avatar lanicolas avatar ldabas-msft avatar likamrat avatar matthansen0 avatar melissaburschatfractal avatar microsoft-github-operations[bot] avatar microsoftopensource avatar robertbernstein avatar sebassem avatar zaidmohd avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

arc_jumpstart_docs's Issues

Azure ArcBox Workbook missed [ITPro flavor]

Hi Team,

I recently (last evening, Nov 21st) implemented ITPro Azure ArcBox following detailed instructions from the newest version of the page Jumpstart ArcBox for IT Pros. However, after fighting with some issues - problems with implementing MA/MMA agent on ArcBOX-SQL (it was necessary to reimplement agents manually, from within the virtual machine) most problems connected with MFA challenges - I landed with lack of Arc workbook.

Based on document and rg_arc picture there should be a workbook ready to use. Sadly in my implementation it is not exist:

Here is the standard list of all resources
image

Here is the expanded list of all resources
image

And there is no errors about workbook in this deployment (only one error is with double deployment of AMA.

Can we please investigate if this is only mine problem?

HCIBox AZD use the current PowerShell context different to azd auth context #2443

This is an issue has been raised in azure arc repo. One possible solution to highlight the issue and provide guidance for user is to highlight this use case in the documentation
Reference: microsoft/azure_arc#2443

Is your issue related to a Jumpstart scenario, ArcBox, HCIBox, or Agora?
I was following the instruction from this documentation (https://azurearcjumpstart.io/azure_jumpstart_hcibox/deployment_azd)

Describe the issue or the bug
When using azd up for HCI Box scenarios, the command failed at pre-provision script. Please see screen shot

To Reproduce
1 - Login with powershell with credential - X
2 - Login with azd auth login for HCI box using anther credential - Y - which does not have the same access to X ie different tenant.
3 - Run azd up

Expected behavior
Pre-provision step using PowerShell will consider the context from azd auth

Environment summary

az 2.57.0
azd v1.6.1
Powershell 7.4.1

Have you looked at the Troubleshooting and Logs section?

Yes I did

Screenshots
image
Additional context

I volunteer to update the doc to hight light this problem

Code snippet to create service principal for Microsoft Azure: Windows Server Virtual Machine has error, causing it to fail

Currently, the snippet is
az login
subscriptionId=$(az account show --query id --output tsv)
az ad sp create-for-rbac -n "<Unique SP Name>" --role "Contributor" --scopes /subscriptions/$subscriptionId

However, the $ declaring the variable subscriptionID slipped. It should be:

az login
$subscriptionId=(az account show --query id --output tsv)
az ad sp create-for-rbac -n "<Unique SP Name>" --role "Contributor" --scopes /subscriptions/$subscriptionId

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.