Skip to content

Commit e14b063

Browse files
authored
Merge pull request #88 from controlplaneio-fluxcd/update-charts
Update charts
2 parents a15b852 + e555b18 commit e14b063

File tree

7 files changed

+111
-9
lines changed

7 files changed

+111
-9
lines changed

charts/flux-instance/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
2-
version: 0.27.0
3-
appVersion: "v0.27.0"
2+
version: 0.28.0
3+
appVersion: "v0.28.0"
44
kubeVersion: ">=1.22.0-0"
55
type: application
66
name: flux-instance

charts/flux-instance/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# flux-instance
22

3-
![Version: 0.27.0](https://img.shields.io/badge/Version-0.27.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.27.0](https://img.shields.io/badge/AppVersion-v0.27.0-informational?style=flat-square)
3+
![Version: 0.28.0](https://img.shields.io/badge/Version-0.28.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.28.0](https://img.shields.io/badge/AppVersion-v0.28.0-informational?style=flat-square)
44

55
This chart is a thin wrapper around the `FluxInstance` custom resource, which is
66
used by the [Flux Operator](https://github.com/controlplaneio-fluxcd/flux-operator)

charts/flux-operator-mcp/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
2-
version: 0.27.0
3-
appVersion: "v0.27.0"
2+
version: 0.28.0
3+
appVersion: "v0.28.0"
44
kubeVersion: ">=1.27.0-0"
55
type: application
66
name: flux-operator-mcp

charts/flux-operator-mcp/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# flux-operator-mcp
22

3-
![Version: 0.27.0](https://img.shields.io/badge/Version-0.27.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.27.0](https://img.shields.io/badge/AppVersion-v0.27.0-informational?style=flat-square)
3+
![Version: 0.28.0](https://img.shields.io/badge/Version-0.28.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.28.0](https://img.shields.io/badge/AppVersion-v0.28.0-informational?style=flat-square)
44

55
The [Flux MCP Server](https://github.com/controlplaneio-fluxcd/flux-operator/tree/main/cmd/mcp)
66
connects AI assistants to Kubernetes clusters running Flux Operator, enabling seamless interaction

charts/flux-operator/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
2-
version: 0.27.0
3-
appVersion: "v0.27.0"
2+
version: 0.28.0
3+
appVersion: "v0.28.0"
44
kubeVersion: ">=1.22.0-0"
55
type: application
66
name: flux-operator

charts/flux-operator/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# flux-operator
22

3-
![Version: 0.27.0](https://img.shields.io/badge/Version-0.27.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.27.0](https://img.shields.io/badge/AppVersion-v0.27.0-informational?style=flat-square)
3+
![Version: 0.28.0](https://img.shields.io/badge/Version-0.28.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.28.0](https://img.shields.io/badge/AppVersion-v0.28.0-informational?style=flat-square)
44

55
The [Flux Operator](https://github.com/controlplaneio-fluxcd/flux-operator) provides a
66
declarative API for the installation and upgrade of CNCF [Flux](https://fluxcd.io) and the

charts/flux-operator/templates/crds.yaml

Lines changed: 102 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -458,6 +458,57 @@ spec:
458458
- type
459459
type: object
460460
type: array
461+
history:
462+
description: |-
463+
History contains the reconciliation history of the FluxInstance
464+
as a list of snapshots ordered by the last reconciled time.
465+
items:
466+
description: |-
467+
Snapshot represents a point-in-time record of a group of resources reconciliation,
468+
including timing information, status, and a unique digest identifier.
469+
properties:
470+
digest:
471+
description: Digest is the checksum in the format `<algo>:<hex>`
472+
of the resources in this snapshot.
473+
type: string
474+
firstReconciled:
475+
description: FirstReconciled is the time when this revision
476+
was first reconciled to the cluster.
477+
format: date-time
478+
type: string
479+
lastReconciled:
480+
description: LastReconciled is the time when this revision was
481+
last reconciled to the cluster.
482+
format: date-time
483+
type: string
484+
lastReconciledDuration:
485+
description: LastReconciledDuration is time it took to reconcile
486+
the resources in this revision.
487+
type: string
488+
lastReconciledStatus:
489+
description: LastReconciledStatus is the status of the last
490+
reconciliation.
491+
type: string
492+
metadata:
493+
additionalProperties:
494+
type: string
495+
description: Metadata contains additional information about
496+
the snapshot.
497+
type: object
498+
totalReconciliations:
499+
description: TotalReconciliations is the total number of reconciliations
500+
that have occurred for this snapshot.
501+
format: int64
502+
type: integer
503+
required:
504+
- digest
505+
- firstReconciled
506+
- lastReconciled
507+
- lastReconciledDuration
508+
- lastReconciledStatus
509+
- totalReconciliations
510+
type: object
511+
type: array
461512
inventory:
462513
description: |-
463514
Inventory contains a list of Kubernetes resource object references
@@ -1478,6 +1529,57 @@ spec:
14781529
- type
14791530
type: object
14801531
type: array
1532+
history:
1533+
description: |-
1534+
History contains the reconciliation history of the ResourceSet
1535+
as a list of snapshots ordered by the last reconciled time.
1536+
items:
1537+
description: |-
1538+
Snapshot represents a point-in-time record of a group of resources reconciliation,
1539+
including timing information, status, and a unique digest identifier.
1540+
properties:
1541+
digest:
1542+
description: Digest is the checksum in the format `<algo>:<hex>`
1543+
of the resources in this snapshot.
1544+
type: string
1545+
firstReconciled:
1546+
description: FirstReconciled is the time when this revision
1547+
was first reconciled to the cluster.
1548+
format: date-time
1549+
type: string
1550+
lastReconciled:
1551+
description: LastReconciled is the time when this revision was
1552+
last reconciled to the cluster.
1553+
format: date-time
1554+
type: string
1555+
lastReconciledDuration:
1556+
description: LastReconciledDuration is time it took to reconcile
1557+
the resources in this revision.
1558+
type: string
1559+
lastReconciledStatus:
1560+
description: LastReconciledStatus is the status of the last
1561+
reconciliation.
1562+
type: string
1563+
metadata:
1564+
additionalProperties:
1565+
type: string
1566+
description: Metadata contains additional information about
1567+
the snapshot.
1568+
type: object
1569+
totalReconciliations:
1570+
description: TotalReconciliations is the total number of reconciliations
1571+
that have occurred for this snapshot.
1572+
format: int64
1573+
type: integer
1574+
required:
1575+
- digest
1576+
- firstReconciled
1577+
- lastReconciled
1578+
- lastReconciledDuration
1579+
- lastReconciledStatus
1580+
- totalReconciliations
1581+
type: object
1582+
type: array
14811583
inventory:
14821584
description: |-
14831585
Inventory contains a list of Kubernetes resource object references

0 commit comments

Comments
 (0)