Skip to content

Commit

Permalink
Fix Codespace url (#637)
Browse files Browse the repository at this point in the history
* fix codespace url

* Remove refs to reorg

* disable versioned components for now
  • Loading branch information
osterman authored Jun 25, 2024
1 parent b53d696 commit ca13349
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 18 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Atmos is extensible to accommodate any tooling, including enterprise-scale Terra
> [!TIP]
> ### You can try out `atmos` directly in your browser using GitHub Codespaces
>
> [![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://github.com/codespaces/new?hide_repo_select=true&ref=reorg&repo=cloudposse/atmos&skip_quickstart=true)
> [![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://github.com/codespaces/new?hide_repo_select=true&ref=main&repo=cloudposse/atmos&skip_quickstart=true)
>
> <i>Already start one? Find it [here](https://github.com/codespaces).</i>
>
Expand All @@ -54,7 +54,7 @@ Atmos is extensible to accommodate any tooling, including enterprise-scale Terra

[Atmos](https://atmos.tools) centralizes the DevOps chain and cloud automation/orchestration into a robust command-line tool,
streamlining environments and workflows into straightforward CLI commands. Leveraging advanced hierarchical configurations,
it efficiently orchestrates both local and CI/CD pipeline tasks, optimizing infrastructure management for engineers and cloud
it efficiently orchestrates both local and CI/CD pipeline tasks, optimizing infrastructure management for engineers and cloud
architects alike. You can then run the CLI anywhere, such as locally or in CI/CD.

The Atmos project consists of a command-line tool, a `Go` library, and even a terraform provider. It provides numerous
Expand Down
6 changes: 3 additions & 3 deletions README.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ description: |-
> [!TIP]
> ### You can try out `atmos` directly in your browser using GitHub Codespaces
>
> [![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://github.com/codespaces/new?hide_repo_select=true&ref=reorg&repo=cloudposse/atmos&skip_quickstart=true)
> [![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://github.com/codespaces/new?hide_repo_select=true&ref=main&repo=cloudposse/atmos&skip_quickstart=true)
>
> <i>Already start one? Find it [here](https://github.com/codespaces).</i>
>
Expand All @@ -58,7 +58,7 @@ introduction: |-
[Atmos](https://atmos.tools) centralizes the DevOps chain and cloud automation/orchestration into a robust command-line tool,
streamlining environments and workflows into straightforward CLI commands. Leveraging advanced hierarchical configurations,
it efficiently orchestrates both local and CI/CD pipeline tasks, optimizing infrastructure management for engineers and cloud
it efficiently orchestrates both local and CI/CD pipeline tasks, optimizing infrastructure management for engineers and cloud
architects alike. You can then run the CLI anywhere, such as locally or in CI/CD.
The Atmos project consists of a command-line tool, a `Go` library, and even a terraform provider. It provides numerous
Expand Down Expand Up @@ -116,7 +116,7 @@ introduction: |-
predefined templates and policies.
- **Streamlining Deployment with Service Catalogs, Landing Zones, and Blueprints:** Provides ready-to-use templates and guidelines for
setting up cloud environments quickly and consistently.
> [!TIP]
> Don't see your use-case listed? Ask us in the [`#atmos`](https://slack.cloudposse.com) Slack channel,
> or [join us for "Office Hours"](https://cloudposse.com/office-hours/) every week.
Expand Down
21 changes: 11 additions & 10 deletions examples/demo-component-versions/vendor.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,30 +9,31 @@ spec:
bases:
- &library
source: "github.com/cloudposse/atmos.git//examples/demo-library/{{ .Component }}?ref={{.Version}}"
version: "reorg"
version: "main"
targets:
- "components/terraform/{{ .Component }}/{{.Version}}"
included_paths:
- "**/*.tf"
- "**/*.tfvars"
- "**/*.md"
- "**/*.md"
tags:
- demo

- &main
<<: *library
version: "main"

- &v1
<<: *library
version: "reorg"
#- &v1
# <<: *library
# version: "v1.83.0"

sources:
- <<: *v1
component: "github/stargazers"
# We need to wait for the first release of the library to use this
#- <<: *v1
# component: "github/stargazers"

- <<: *v1
component: "weather"
#- <<: *v1
# component: "weather"

- <<: *v1
- <<: *main
component: "ipinfo"
6 changes: 3 additions & 3 deletions examples/demo-vendoring/vendor.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ spec:
sources:
- component: "github/stargazers"
source: "github.com/cloudposse/atmos.git//examples/demo-library/{{ .Component }}?ref={{.Version}}"
version: "reorg"
version: "main"
targets:
- "components/terraform/{{ .Component }}/{{.Version}}"
included_paths:
Expand All @@ -23,15 +23,15 @@ spec:

- component: "weather"
source: "github.com/cloudposse/atmos.git//examples/demo-library/{{ .Component }}?ref={{.Version}}"
version: "reorg"
version: "main"
targets:
- "components/terraform/{{ .Component }}/{{.Version}}"
tags:
- demo

- component: "ipinfo"
source: "github.com/cloudposse/atmos.git//examples/demo-library/{{ .Component }}?ref={{.Version}}"
version: "reorg"
version: "main"
targets:
- "components/terraform/{{ .Component }}/{{.Version}}"
tags:
Expand Down

0 comments on commit ca13349

Please sign in to comment.