-
Notifications
You must be signed in to change notification settings - Fork 52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Simplify first sentence of each principle, for easy memorization #9
Changes from 1 commit
9afb379
0f8c5e9
18de31a
c090c77
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,20 +10,20 @@ These principles were derived from modern software operations but are rooted in | |
|
||
## Principles | ||
|
||
1. **The principle of declarative desired state** | ||
1. **Use declarative infrastructure** | ||
|
||
A system managed by GitOps must have its _Desired State_ expressed declaratively as data in a format writable and readable by both humans and machines. | ||
|
||
2. **The principle of immutable desired state versions** | ||
2. **Use immutable, versioned storage** | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What about "Use immutable, versioned declaration" (to map to principle 4) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe "Store declarations in an immutable version control system" It's long but I think the weakness of what I have in the PR is it sounds almost like a recommendation about what kind of storage your running infra should use which doesn't make sense. This rephrasing feels like it emphasizes the declaration. |
||
|
||
_Desired State_ is stored in a way that supports versioning, immutability of versions, and retains a complete version history. | ||
|
||
3. **The principle of continuous state reconciliation** | ||
3. **Use continuous state reconciliation** | ||
|
||
Software agents continuously, and automatically, compare a system's _Actual State_ to its _Desired State_. | ||
If the actual and desired states differ for any reason, automated actions to reconcile them are initiated. | ||
|
||
4. **The principle of operations through declaration** | ||
4. **Use declaration as the sole way of operating a system** | ||
|
||
The only mechanism through which the system is intentionally operated on is through these principles. | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since "infrastructure" can be seen in the context of physical infrastructure. I would explore different word for this.
"Use declarative pattern" or or "approach" or "model"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe it's just "Use Declarative State" or "Define State Declaratively"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated