This repository was archived by the owner on Oct 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Add CNI attributes #412
Closed
Closed
Add CNI attributes #412
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
51e276a
Add Chart CR (#406)
pipo02mix 80cb457
Document G8sControlPlane CRD (#405)
marians 012f22f
Add missing releases to changelog (#411)
marians c8837f0
Add attributes
paurosello adcfb75
Change similar to https://github.com/kubernetes-sigs/cluster-api/blob…
paurosello a55c2d4
Add ending colon
paurosello cae9033
Add kubebuilder annotation
paurosello 8ad6174
fix tests
paurosello faef1bd
Update changelog
paurosello File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| apiVersion: application.giantswarm.io/v1alpha1 | ||
| kind: Chart | ||
| metadata: | ||
| annotations: | ||
| giantswarm.io/docs: https://pkg.go.dev/github.com/giantswarm/apiextensions/pkg/apis/application/v1alpha1?tab=doc#Chart | ||
| creationTimestamp: null | ||
| name: prometheus | ||
| spec: | ||
| config: | ||
| configMap: | ||
| name: f2def-chart-values | ||
| namespace: f2def | ||
| resourceVersion: "" | ||
| secret: | ||
| name: f2def-chart-values | ||
| namespace: f2def | ||
| resourceVersion: "" | ||
| name: prometheus | ||
| namespace: monitoring | ||
| tarballURL: prometheus-1.0.1.tgz | ||
| version: 1.0.1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
docs/cr/infrastructure.giantswarm.io_v1alpha2_g8scontrolplane.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| apiVersion: infrastructure.giantswarm.io/v1alpha2 | ||
| kind: Cluster | ||
| metadata: | ||
| annotations: | ||
| giantswarm.io/docs: https://pkg.go.dev/github.com/giantswarm/apiextensions@v0.2.5/pkg/apis/infrastructure/v1alpha2?tab=doc#G8sControlPlane | ||
| creationTimestamp: null | ||
| name: 0p8h5 | ||
| spec: | ||
| infrastructureRef: | ||
| apiVersion: infrastructure.giantswarm.io/v1alpha2 | ||
| kind: AWSControlPlane | ||
| name: 0p8h5 | ||
| namespace: default | ||
| replicas: 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,94 @@ | ||
| apiVersion: apiextensions.k8s.io/v1beta1 | ||
| kind: CustomResourceDefinition | ||
| metadata: | ||
| creationTimestamp: null | ||
| name: charts.application.giantswarm.io | ||
| spec: | ||
| group: application.giantswarm.io | ||
| names: | ||
| kind: Chart | ||
| plural: charts | ||
| singular: chart | ||
| scope: Namespaced | ||
| subresources: | ||
| status: {} | ||
| validation: | ||
| openAPIV3Schema: | ||
| description: | | ||
| Defines a Chart resource, which represents an application version running on the cluster. | ||
| This resource is created and managed by chart-operator running in each tenant cluster. | ||
| properties: | ||
| spec: | ||
| properties: | ||
| config: | ||
| description: "Defines the aggregated configuration values for the application | ||
| chart. It is \ncreated by app-operator in the tenant cluster to be | ||
| used as values file by \nchart operator during the helm installation | ||
| process.\nproccess. \n" | ||
| properties: | ||
| configMap: | ||
| description: "Defines a reference to a ConfigMap where is the aggregated | ||
| configuration values \nfrom App Catalog, Cluster and User that | ||
| will be used as values file in the helm\ninstallation or upgrade | ||
| process.\n" | ||
| properties: | ||
| name: | ||
| description: | | ||
| Name of the ConfigMap resource. | ||
| type: string | ||
| namespace: | ||
| description: | | ||
| Namespace holding the ConfigMap resource. | ||
| type: string | ||
| resourceVersion: | ||
| type: string | ||
| required: | ||
| - name | ||
| - namespace | ||
| type: object | ||
| secret: | ||
| description: | | ||
| Defines a reference to a Secret where is the aggregated configuration values from App Catalog, Cluster and User that will be used as values file in the helm | ||
| installation or upgrade process. | ||
| properties: | ||
| name: | ||
| description: | | ||
| Name of the Secret resource. | ||
| type: string | ||
| namespace: | ||
| description: | | ||
| Namespace holding the Secret resource. | ||
| type: string | ||
| resourceVersion: | ||
| type: string | ||
| required: | ||
| - name | ||
| - namespace | ||
| type: object | ||
| type: object | ||
| name: | ||
| description: | | ||
| Name of this application Chart. | ||
| type: string | ||
| namespace: | ||
| description: | | ||
| Kubernetes namespace in which to install the workloads defined by this App Chart in | ||
| the current cluster. | ||
| type: string | ||
| tarballURL: | ||
| description: "URL of the application Chart to be deployed. The chart | ||
| package must exist in the \nApp Catalog storage.\n" | ||
| format: uri | ||
| type: string | ||
| version: | ||
| description: | | ||
| Version of the application Chart to be deployed. | ||
| type: string | ||
| required: | ||
| - name | ||
| - namespace | ||
| - tarballURL | ||
| - version | ||
| type: object | ||
| type: object | ||
| version: v1alpha1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 55 additions & 0 deletions
55
docs/crd/infrastructure.giantswarm.io_g8scontrolplane.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,55 @@ | ||
| apiVersion: apiextensions.k8s.io/v1beta1 | ||
| kind: CustomResourceDefinition | ||
| metadata: | ||
| creationTimestamp: null | ||
| name: g8scontrolplanes.infrastructure.giantswarm.io | ||
| spec: | ||
| conversion: | ||
| strategy: None | ||
| group: infrastructure.giantswarm.io | ||
| names: | ||
| kind: G8sControlPlane | ||
| plural: g8scontrolplanes | ||
| singular: g8scontrolplane | ||
| scope: Namespaced | ||
| subresources: | ||
| status: {} | ||
| versions: | ||
| - name: v1alpha1 | ||
| served: false | ||
| storage: false | ||
| - name: v1alpha2 | ||
| schema: | ||
| openAPIV3Schema: | ||
| description: | | ||
| This resource represents an abstract control plane (Kubernetes master node and Etcd server) | ||
| of a tenant cluster in a Giant Swarm installation. It is reconciled by cluster-operator. | ||
| For implementation details it references a provider specific resource. | ||
| properties: | ||
| spec: | ||
| properties: | ||
| infrastructureRef: | ||
| description: | | ||
| Reference to an [AWSControlPlane](https://docs.giantswarm.io/reference/cp-k8s-api/awscontrolplanes.infrastructure.giantswarm.io/) | ||
| resource defining provider specific details for the c | ||
| properties: | ||
| apiVersion: | ||
| type: string | ||
| kind: | ||
| type: string | ||
| name: | ||
| type: string | ||
| namespace: | ||
| type: string | ||
| type: object | ||
| replicas: | ||
| description: | | ||
| Number of master nodes and Etcd instances to set up. | ||
| enum: | ||
| - 1 | ||
| - 3 | ||
| type: integer | ||
| type: object | ||
| type: object | ||
| served: true | ||
| storage: true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
I'd like those changelogs to be more meaningful. The biggest value for me (as a dev) is to see the migration path from one version to another. What those changes are doing can be figured from the docs.