-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'edge' into Reshrahim-patch-3
- Loading branch information
Showing
53 changed files
with
740 additions
and
199 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,2 @@ | ||
# Documentation and examples for what this does: | ||
# | ||
# https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners | ||
|
||
# This file is a list of rules, with the last rule being most specific | ||
# All of the people (and only those people) from the matching rule will be notified | ||
|
||
# Default rule: anything that doesn't match a more specific rule goes here | ||
* @radius-project/maintainers-docs @radius-project/approvers-docs | ||
# These owners are the maintainers and approvers of this repo | ||
* @radius-project/maintainers-docs @radius-project/approvers-docs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
# These owners are the maintainers and approvers of this repo | ||
* @radius-project/maintainers-docs @radius-project/approvers-docs | ||
# See the owners for this repo at .github/CODEOWNERS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
--- | ||
type: docs | ||
title: "rad bicep publish-extension CLI reference" | ||
linkTitle: "rad bicep publish-extension" | ||
slug: rad_bicep_publish-extension | ||
url: /reference/cli/rad_bicep_publish-extension/ | ||
description: "Details on the rad bicep publish-extension Radius CLI command" | ||
--- | ||
## rad bicep publish-extension | ||
|
||
Generate or publish a Bicep extension for a set of resource types. | ||
|
||
### Synopsis | ||
|
||
Generate or publish a Bicep extension for a set of resource types. | ||
This command compiles a set of resource types (resource provider manifest) into a Bicep extension for local use or distribution. | ||
|
||
Bicep extensions enable extensibility for the Bicep language. This command can be used to generate and distribute Bicep support for resource types authored by users. Bicep extensions can be distributed using Open Container Initiative (OCI) registry, such as Azure Container Registry, Docker Hub, or GitHub Container Registry. See https://learn.microsoft.com/en-us/azure/azure-resource-manager/bicep/bicep-extension for more information on Bicep extensions. | ||
|
||
Once an extension is been generated, it can be used locally or published to a container registry for distribution depending on the target specified. | ||
|
||
When publishing to an OCI registry it is expected the user runs docker login (or similar command) and has the proper permission to push to the target OCI registry. | ||
|
||
|
||
``` | ||
rad bicep publish-extension [flags] | ||
``` | ||
|
||
### Examples | ||
|
||
``` | ||
# Generate a Bicep extension to a local file | ||
rad bicep publish-extension --from-file ./Example.Provider.yaml --target ./output.tgz | ||
# Publish a Bicep extension to a container registry | ||
bicep publish-extension ./Example.Provider.yaml --target br:ghcr.io/myregistry/example-provider:v1 | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
-f, --from-file string The input file. May be an absolute path or a path relative to the current working directory | ||
-h, --help help for publish-extension | ||
--target string The destination path file or OCI registry path. OCI registry paths use the format 'br:HOST/PATH:TAG'. | ||
``` | ||
|
||
### Options inherited from parent commands | ||
|
||
``` | ||
--config string config file (default "$HOME/.rad/config.yaml") | ||
-o, --output string output format (supported formats are json, table) (default "table") | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [rad bicep]({{< ref rad_bicep.md >}}) - Manage bicep compiler | ||
|
Oops, something went wrong.