-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
befb440
commit b07a74d
Showing
8 changed files
with
155 additions
and
18 deletions.
There are no files selected for viewing
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,28 @@ | ||
# action.yml | ||
name: "Clusters: Add to JSON file" | ||
inputs: | ||
config-file: | ||
description: Path to the clusters JSON config data file | ||
required: true | ||
name: | ||
description: Name of the new cluster | ||
required: true | ||
environment: | ||
description: Environment of the cluster | ||
required: true | ||
location: | ||
description: Azure location of the cluster | ||
required: true | ||
runs: | ||
using: 'docker' | ||
image: 'Dockerfile' | ||
args: | ||
- clusters:add | ||
- --config-file | ||
- ${{ inputs.config-file }} | ||
- --name | ||
- ${{ inputs.name }} | ||
- --environment | ||
- ${{ inputs.environment }} | ||
- --location | ||
- ${{ inputs.location }} |
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,18 @@ | ||
# action.yml | ||
name: "Clusters: Delete from JSON file" | ||
inputs: | ||
config-file: | ||
description: Path to the clusters JSON config data file | ||
required: true | ||
name: | ||
description: Name of the cluster | ||
required: true | ||
runs: | ||
using: 'docker' | ||
image: 'Dockerfile' | ||
args: | ||
- clusters:delete | ||
- --config-file | ||
- ${{ inputs.config-file }} | ||
- --name | ||
- ${{ inputs.name }} |
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,19 @@ | ||
# action.yml | ||
name: "Fronthub: Add DNS Zone to JSON file" | ||
inputs: | ||
config-file: | ||
description: Path to the fronthub JSON config data file | ||
required: true | ||
domain: | ||
description: Name of the new domain | ||
required: true | ||
runs: | ||
using: 'docker' | ||
image: 'Dockerfile' | ||
args: | ||
- fronthub:add-dns-zone | ||
- --config-file | ||
- ${{ inputs.config-file }} | ||
- --domain | ||
- ${{ inputs.domain }} | ||
|
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,29 @@ | ||
# action.yml | ||
name: "Fronthub: Add Endpoint to JSON file" | ||
inputs: | ||
config-file: | ||
description: Path to the fronthub JSON config data file | ||
required: true | ||
domain: | ||
description: Name of the domain | ||
required: true | ||
url: | ||
description: "URL path of the endpoint, for example: *.example.com/path/*" | ||
required: true | ||
cluster: | ||
description: Name of the cluster in IDP | ||
required: true | ||
runs: | ||
using: 'docker' | ||
image: 'Dockerfile' | ||
args: | ||
- fronthub:add-endpoint | ||
- --config-file | ||
- ${{ inputs.config-file }} | ||
- --domain | ||
- ${{ inputs.domain }} | ||
- --url | ||
- ${{ inputs.url }} | ||
- --cluster | ||
- ${{ inputs.cluster }} | ||
|
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,19 @@ | ||
# action.yml | ||
name: "Fronthub: Delete DNS Zone from JSON file" | ||
inputs: | ||
config-file: | ||
description: Path to the fronthub JSON config data file | ||
required: true | ||
domain: | ||
description: Name of the domain | ||
required: true | ||
runs: | ||
using: 'docker' | ||
image: 'Dockerfile' | ||
args: | ||
- fronthub:delete-dns-zone | ||
- --config-file | ||
- ${{ inputs.config-file }} | ||
- --domain | ||
- ${{ inputs.domain }} | ||
|
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,23 @@ | ||
# action.yml | ||
name: "Fronthub: Delete Endpoint from JSON file" | ||
inputs: | ||
config-file: | ||
description: Path to the fronthub JSON config data file | ||
required: true | ||
domain: | ||
description: Name of the domain | ||
required: true | ||
url: | ||
description: "URL path of the endpoint, for example: *.example.com/path/*" | ||
required: true | ||
runs: | ||
using: 'docker' | ||
image: 'Dockerfile' | ||
args: | ||
- fronthub:delete-endpoint | ||
- --config-file | ||
- ${{ inputs.config-file }} | ||
- --domain | ||
- ${{ inputs.domain }} | ||
- --url | ||
- ${{ inputs.url }} |
This file was deleted.
Oops, something went wrong.
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,19 @@ | ||
# action.yml | ||
name: "Fronthub: Transform config" | ||
inputs: | ||
input-file: | ||
description: Path to the fronthub JSON config data file | ||
required: true | ||
output-file: | ||
description: Path to the transformed module-prepared output to store | ||
required: true | ||
runs: | ||
using: 'docker' | ||
image: 'Dockerfile' | ||
args: | ||
- fronthub:transform | ||
- --input-file | ||
- ${{ inputs.input-file }} | ||
- --output-file | ||
- ${{ inputs.output-file }} | ||
|