Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/PowerShell/DSC
This repo is for the DSC v3 project
https://github.com/PowerShell/DSC
Last synced: 7 days ago
JSON representation
This repo is for the DSC v3 project
- Host: GitHub
- URL: https://github.com/PowerShell/DSC
- Owner: PowerShell
- License: mit
- Created: 2022-11-29T20:27:52.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-28T22:06:54.000Z (16 days ago)
- Last Synced: 2024-11-05T00:52:22.919Z (9 days ago)
- Language: Rust
- Homepage:
- Size: 2.78 MB
- Stars: 215
- Watchers: 21
- Forks: 29
- Open Issues: 134
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
- jimsghstars - PowerShell/DSC - This repo is for the DSC v3 project (Rust)
README
# DSCv3
> [!NOTE]
> This repo isn't accepting code contributions. It's public and open source to show progress and
> enable feedback. Once we're at a feature complete state, we can start taking code contributions.## What's DSCv3?
DSCv3 is the latest iteration of Microsoft's Desired State Configuration platform. DSCv3 is an open
source command line application that abstracts the management of software components declaratively
and idempotently. DSCv3 runs on Linux, macOS, and Windows without any external dependencies.With DSCv3, you can:
- Author resources to manage your systems in any language
- Invoke individual resources
- Create configuration documents that define the desired state of a system### Differences from PowerShell DSC
This project is the next generation of DSC and leverages the
[PSDesiredStateConfiguration module][00] to maintain compatibility with existing PowerShell based
resources.DSCv3 differs from PowerShell DSC in a few important ways:
- DSCv3 doesn't depend on PowerShell. You can use DSCv3 without PowerShell installed and manage
resources written in bash, python, C#, Go, or any other language.
- DSCv3 doesn't include a local configuration manager. DSCv3 is invoked as a command. It doesn't
run as a service.
- Non-PowerShell resources define their schemas with JSON files, not MOF files.
- Configuration documents are defined in JSON or YAML files, not PowerShell script files.Importantly, while DSCv3 represents a major change to the DSC platform, DSCv3 is able to invoke
PowerShell DSC Resources, including script-based and class-based DSC Resources, as they exist today. The
configuration documents aren't compatible, but all published PowerShell DSC Resources are. You can
use PowerShell DSC resources in DSCv3 with both Windows PowerShell and PowerShell.## Installing DSCv3
To install DSC v3:
1. Download the [latest release from this repository][01].
1. Expand the release archive.
1. Add the folder containing the expanded archive contents to the `PATH`.## Explore DSCv3
If you're new to DSC or configuration management, we recommend reviewing the [documentation][02].
### Learning and authoring tutorials
If you're already familiar with DSC or just want to start experimenting with v3, we recommend
reviewing the [Samples repository][03] and the accompanying [tutorial site][04]. The Samples
repo is ready to accept Pull Requests, which is a great way to contribute while v3 is in early
phases of development.## Integrating with DSCv3
DSCv3 is a platform tool that abstracts the concerns for defining and invoking resources. Higher
order tools, like Azure Machine Configuration, Azure Automanaged VM, and WinGet are early partners
for DSCv3 as orchestration agents.DSCv3 uses JSON schemas to define the structure of resources, configuration documents, and the
outputs that DSCv3 returns. These schemas make it easier to integrate DSCv3 with other tools,
because they standardize and document how to interface with DSCv3.## Code of Conduct
Please see our [Code of Conduct](CODE_OF_CONDUCT.md) before participating in this project.
## Security Policy
For any security issues, please see our [Security Policy](SECURITY.md).
[00]: https://github.com/powershell/psdesiredstateconfiguration
[01]: https://github.com/PowerShell/DSC/releases/latest
[02]: https://learn.microsoft.com/powershell/dsc/overview?view=dsc-3.0&preserve-view=true
[03]: https://github.com/PowerShell/DSC-Samples
[04]: https://powershell.github.io/DSC-Samples