-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add rollups.cartesi.io/Applications CRD
- Loading branch information
1 parent
00e7b6b
commit 8336d55
Showing
5 changed files
with
126 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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,23 @@ | ||
# Patterns to ignore when building packages. | ||
# This supports shell glob matching, relative path matching, and | ||
# negation (prefixed with !). Only one pattern per line. | ||
.DS_Store | ||
# Common VCS dirs | ||
.git/ | ||
.gitignore | ||
.bzr/ | ||
.bzrignore | ||
.hg/ | ||
.hgignore | ||
.svn/ | ||
# Common backup files | ||
*.swp | ||
*.bak | ||
*.tmp | ||
*.orig | ||
*~ | ||
# Various IDEs | ||
.project | ||
.idea/ | ||
*.tmproj | ||
.vscode/ |
This file contains 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,11 @@ | ||
apiVersion: v2 | ||
name: cartesi-applications-crd | ||
description: A Helm chart for Cartesi Application Custom Resource Definitions (CRDs) | ||
maintainers: | ||
- name: endersonmaia | ||
email: [email protected] | ||
url: https://github.com/endersonmaia | ||
type: application | ||
version: 0.1.0 | ||
sources: | ||
- https://github.com/cartesi/helm-charts/ |
This file contains 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 @@ | ||
{{- /* empty file */}} |
90 changes: 90 additions & 0 deletions
90
charts/applications-crd/templates/rollups.cartesi.io_applications.yaml
This file contains 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,90 @@ | ||
--- | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: applications.rollups.cartesi.io | ||
spec: | ||
group: rollups.cartesi.io | ||
names: | ||
kind: Application | ||
listKind: ApplicationList | ||
plural: applications | ||
singular: application | ||
scope: Namespaced | ||
versions: | ||
- name: v1alpha1 | ||
schema: | ||
openAPIV3Schema: | ||
description: Application is the Schema for the applications API | ||
properties: | ||
apiVersion: | ||
description: | ||
"APIVersion defines the versioned schema of this representation | ||
of an object. Servers should convert recognized schemas to the latest | ||
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources" | ||
type: string | ||
kind: | ||
description: | ||
"Kind is a string value representing the REST resource this | ||
object represents. Servers may infer this from the endpoint the client | ||
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds" | ||
type: string | ||
status: | ||
description: Status defines the observed state of Application | ||
type: object | ||
metadata: | ||
type: object | ||
spec: | ||
description: Spec defines the desired state of Application | ||
type: object | ||
properties: | ||
address: | ||
description: Address of the application | ||
type: string | ||
pattern: '^0x([a-zA-Z0-9]){40}$' | ||
x-kubernetes-validations: | ||
- rule: "self != oldSelf" | ||
message: "cannot change address" | ||
blockHash: | ||
description: Block hash of the block which deployed the application | ||
type: string | ||
pattern: '^0x([a-zA-Z0-9]){64}$' | ||
x-kubernetes-validations: | ||
- rule: "self != oldSelf" | ||
message: "cannot change blockHash" | ||
blockNumber: | ||
description: Block number of the block which deployed the application | ||
type: string | ||
x-kubernetes-validations: | ||
- rule: "self != oldSelf" | ||
message: "cannot change blockNumber" | ||
transactionHash: | ||
description: Transaction hash of the transaction which deployed the application | ||
type: string | ||
pattern: '^0x([a-zA-Z0-9]){64}$' | ||
x-kubernetes-validations: | ||
- rule: "self != oldSelf" | ||
message: "cannot change transactionHash" | ||
location: | ||
description: Location of the cartesi machine snapshot | ||
type: string | ||
x-kubernetes-validations: | ||
- rule: "self != oldSelf" | ||
message: "cannot change location" | ||
type: object | ||
additionalPrinterColumns: | ||
- name: Application | ||
type: string | ||
description: Address of the application | ||
jsonPath: .spec.address | ||
- name: Location | ||
type: string | ||
description: Location of the cartesi machine snapshot | ||
jsonPath: .spec.location | ||
- name: Age | ||
type: date | ||
jsonPath: .metadata.creationTimestamp | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} |
This file contains 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 @@ | ||
# empty file |