-
Notifications
You must be signed in to change notification settings - Fork 221
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #431 from mbaldessari/metadata
Metadata support
- Loading branch information
Showing
2 changed files
with
93 additions
and
0 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,23 @@ | ||
# This job requires a secret called DOCS_TOKEN which should be a PAT token | ||
# that has the permissions described in: | ||
# validatedpatterns/docs/.github/workflows/metadata-docs.yml@main | ||
--- | ||
name: Update docs pattern metadata | ||
|
||
on: | ||
push: | ||
paths: | ||
- "pattern-metadata.yaml" | ||
- ".github/workflows/update-metadata.yml" | ||
|
||
jobs: | ||
update-metadata: | ||
uses: validatedpatterns/docs/.github/workflows/metadata-docs.yml@main | ||
permissions: # Workflow-level permissions | ||
contents: read # Required for "read-all" | ||
packages: write # Allows writing to packages | ||
id-token: write # Allows creating OpenID Connect (OIDC) tokens | ||
secrets: inherit | ||
# For testing you can point to a different branch in the docs repository | ||
# with: | ||
# DOCS_BRANCH: "main" |
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,70 @@ | ||
# This goal of this metadata is mainly used as a source of truth for | ||
# documentation and qe | ||
metadata_version: "1.0" | ||
name: multicloud-gitops | ||
pattern_version: "1.0" | ||
display_name: Multicloud Gitops | ||
repo_url: https://github.com/validatedpatterns/multicloud-gitops | ||
docs_repo_url: https://github.com/validatedpatterns/docs | ||
issues_url: https://github.com/validatedpatterns/multicloud-gitops/issues | ||
docs_url: https://validatedpatterns.io/patterns/multicloud-gitops/ | ||
ci_url: https://validatedpatterns.io/ci/?pattern=mcgitops | ||
# can be sandbox, tested or maintained | ||
tier: maintained | ||
owners: mbaldessari, darkdoc | ||
requirements: | ||
hub: # Main cluster | ||
compute: | ||
platform: | ||
gcp: | ||
replicas: 3 | ||
type: n1-standard-8 | ||
azure: | ||
replicas: 3 | ||
type: Standard_D8s_v3 | ||
aws: | ||
replicas: 3 | ||
type: m5.2xlarge | ||
controlPlane: | ||
platform: | ||
gcp: | ||
replicas: 3 | ||
type: n1-standard-4 | ||
azure: | ||
replicas: 3 | ||
type: Standard_D4s_v3 | ||
aws: | ||
replicas: 3 | ||
type: m5.xlarge | ||
spoke: # optional - represents the clusters imported into ACM | ||
compute: | ||
platform: | ||
gcp: | ||
replicas: 0 | ||
type: n1-standard-8 | ||
azure: | ||
replicas: 0 | ||
type: Standard_D8s_v3 | ||
aws: | ||
replicas: 0 | ||
type: m5.2xlarge | ||
controlPlane: | ||
platform: | ||
gcp: | ||
replicas: 3 | ||
type: n1-standard-8 | ||
azure: | ||
replicas: 3 | ||
type: Standard_D8s_v3 | ||
aws: | ||
replicas: 3 | ||
type: m5.2xlarge | ||
|
||
# Loosely defined extra features like hypershift support, non-openshift | ||
# kubernetes support, spoke support | ||
extra_features: | ||
hypershift_support: true | ||
spoke_support: true | ||
|
||
external_requirements: | ||
# external quay, s3 bucket, agof tokens to access paywalled material, manifests, rag-llm hw (only selected regions) |