Skip to content
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

Prep website for principles v0.2.0 #21

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions content/principles/automated-delivery.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
order: 3
title: The principle of continuous state reconciliation
description: "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."
title: State Reconciliation Is Continuous
description: "Software agents continuously, and automatically, compare a system's state to its Desired State. If these states differ for any reason, automated actions to reconcile them are initiated."
---
2 changes: 1 addition & 1 deletion content/principles/declarative-config.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
order: 1
title: The principle of declarative desired state
title: Desired System State Is Declarative
description: "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."
---
4 changes: 2 additions & 2 deletions content/principles/software-agents.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
order: 4
title: The principle of operations through declaration
description: "The only mechanism through which the system is intentionally operated on is through these principles."
title: Intentional Changes Only Through Versioning
description: "The only mechanism through which the system is intentionally changed is through new versions of the Desired State."
---
2 changes: 1 addition & 1 deletion content/principles/version-controlled.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
order: 2
title: The principle of immutable desired state versions
title: Declarations Are Versioned and Immutable
description: "Desired State is stored in a way that supports versioning, immutability of versions, and retains a complete version history."
---
File renamed without changes.
3 changes: 2 additions & 1 deletion src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@ const IndexPage = ({ location }) => {
<div className="w-full lg:w-2/5">
<h2 className="mb-12 pr-64 text-5xl md:text-6xl lg:sticky lg:top-12 xl:text-7xl lg:mb-0">
<span className="text-accent">GitOps</span>{" "}
<span className="font-normal">Principles</span>
<span className="font-normal">Principles</span>{" "}
<span className="font-normal sm:text-3xl"><a href="https://github.com/open-gitops/documents/pull/14">⚠️ v0.2.0</a></span>
</h2>
</div>

Expand Down