From 4095eacb263f3a74a4c5bfe7f0f91705a6eca6aa Mon Sep 17 00:00:00 2001 From: patoarvizu Date: Sun, 20 Feb 2022 13:45:38 -0500 Subject: [PATCH 1/2] Upgrade controller-gen to generate v1 CRDs --- Makefile | 2 +- ...raform.patoarvizu.dev_terraformstates.yaml | 471 +++++++++--------- .../templates/crds/terraformstate.yaml | 471 +++++++++--------- 3 files changed, 471 insertions(+), 473 deletions(-) diff --git a/Makefile b/Makefile index ac5e3ba..ab623d2 100644 --- a/Makefile +++ b/Makefile @@ -103,7 +103,7 @@ ifeq (, $(shell which controller-gen)) CONTROLLER_GEN_TMP_DIR=$$(mktemp -d) ;\ cd $$CONTROLLER_GEN_TMP_DIR ;\ go mod init tmp ;\ - go get sigs.k8s.io/controller-tools/cmd/controller-gen@v0.3.0 ;\ + go get sigs.k8s.io/controller-tools/cmd/controller-gen@v0.4.0 ;\ rm -rf $$CONTROLLER_GEN_TMP_DIR ;\ } CONTROLLER_GEN=$(GOBIN)/controller-gen diff --git a/config/crd/bases/terraform.patoarvizu.dev_terraformstates.yaml b/config/crd/bases/terraform.patoarvizu.dev_terraformstates.yaml index 39683d9..01fcd1c 100644 --- a/config/crd/bases/terraform.patoarvizu.dev_terraformstates.yaml +++ b/config/crd/bases/terraform.patoarvizu.dev_terraformstates.yaml @@ -1,10 +1,10 @@ --- -apiVersion: apiextensions.k8s.io/v1beta1 +apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition metadata: annotations: - controller-gen.kubebuilder.io/version: v0.3.0 + controller-gen.kubebuilder.io/version: v0.4.0 creationTimestamp: null name: terraformstates.terraform.patoarvizu.dev spec: @@ -17,244 +17,243 @@ spec: - tfs singular: terraformstate scope: Namespaced - subresources: - status: {} - validation: - openAPIV3Schema: - 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 - metadata: - type: object - spec: - properties: - artifactoryConfig: - properties: - password: - type: string - repo: - type: string - subpath: - type: string - url: - type: string - username: - type: string - required: - - repo - - subpath - type: object - consulConfig: - properties: - accessToken: - type: string - address: - type: string - caFile: - type: string - certFile: - type: string - datacenter: - type: string - httpAuth: - type: string - keyFile: - type: string - path: - type: string - scheme: - type: string - required: - - path - type: object - etcdv3Config: - properties: - caCertPath: - type: string - certPath: - type: string - endpoints: - items: - type: string - nullable: true - type: array - keyPath: - type: string - lock: - type: boolean - maxRequestBytes: - type: string - password: - type: string - prefix: - type: string - username: - type: string - required: - - endpoints - type: object - gcsConfig: - properties: - accessToken: - type: string - bucket: - type: string - credentials: - type: string - impersonateServiceAccount: - type: string - prefix: - type: string - required: - - bucket - type: object - kubernetesConfig: - properties: - configPath: - type: string - host: - type: string - inClusterConfig: - type: boolean - insecure: - type: boolean - namespace: - type: string - secretSuffix: - type: string - required: - - secretSuffix - type: object - postgresConfig: - properties: - connStr: - type: string - schemaName: - type: string - type: object - remoteConfig: - properties: - hostname: - type: string - organization: - type: string - token: - type: string - workspaces: - properties: - name: - type: string - prefix: - type: string - type: object - required: - - hostname - - organization - - workspaces - type: object - s3Config: - properties: - accessKey: - type: string - assumeRoleDurationSeconds: - format: int64 - type: integer - assumeRolePolicy: - type: string - assumeRolePolicyARNs: - items: - type: string - type: array - assumeRoleTags: - additionalProperties: - type: string - type: object - assumeRoleTransitiveTagKeys: - items: - type: string - type: array - bucket: - type: string - endpoint: - type: string - externalID: - type: string - forcePathStyle: - type: boolean - iamEndpoint: - type: string - key: - type: string - kmsKeyID: - type: string - maxRetries: - format: int64 - type: integer - profile: - type: string - region: - type: string - roleARN: - type: string - secretKey: - type: string - sessionName: - type: string - sharedCredentialsFile: - type: string - skipCredentialsValidation: - type: boolean - skipMetadataAPICheck: - type: boolean - skipRegionValidation: - type: boolean - sseCustomerKey: - type: string - stsEndpoint: - type: string - token: - type: string - workspaceKeyPrefix: - type: string - required: - - bucket - - key - type: object - target: - properties: - name: - type: string - type: - enum: - - configmap - - secret - type: string - required: - - name - - type - type: object - type: - type: string - required: - - target - - type - type: object - status: - type: object - type: object - version: v1 versions: - name: v1 + schema: + openAPIV3Schema: + 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 + metadata: + type: object + spec: + properties: + artifactoryConfig: + properties: + password: + type: string + repo: + type: string + subpath: + type: string + url: + type: string + username: + type: string + required: + - repo + - subpath + type: object + consulConfig: + properties: + accessToken: + type: string + address: + type: string + caFile: + type: string + certFile: + type: string + datacenter: + type: string + httpAuth: + type: string + keyFile: + type: string + path: + type: string + scheme: + type: string + required: + - path + type: object + etcdv3Config: + properties: + caCertPath: + type: string + certPath: + type: string + endpoints: + items: + type: string + nullable: true + type: array + keyPath: + type: string + lock: + type: boolean + maxRequestBytes: + type: string + password: + type: string + prefix: + type: string + username: + type: string + required: + - endpoints + type: object + gcsConfig: + properties: + accessToken: + type: string + bucket: + type: string + credentials: + type: string + impersonateServiceAccount: + type: string + prefix: + type: string + required: + - bucket + type: object + kubernetesConfig: + properties: + configPath: + type: string + host: + type: string + inClusterConfig: + type: boolean + insecure: + type: boolean + namespace: + type: string + secretSuffix: + type: string + required: + - secretSuffix + type: object + postgresConfig: + properties: + connStr: + type: string + schemaName: + type: string + type: object + remoteConfig: + properties: + hostname: + type: string + organization: + type: string + token: + type: string + workspaces: + properties: + name: + type: string + prefix: + type: string + type: object + required: + - hostname + - organization + - workspaces + type: object + s3Config: + properties: + accessKey: + type: string + assumeRoleDurationSeconds: + format: int64 + type: integer + assumeRolePolicy: + type: string + assumeRolePolicyARNs: + items: + type: string + type: array + assumeRoleTags: + additionalProperties: + type: string + type: object + assumeRoleTransitiveTagKeys: + items: + type: string + type: array + bucket: + type: string + endpoint: + type: string + externalID: + type: string + forcePathStyle: + type: boolean + iamEndpoint: + type: string + key: + type: string + kmsKeyID: + type: string + maxRetries: + format: int64 + type: integer + profile: + type: string + region: + type: string + roleARN: + type: string + secretKey: + type: string + sessionName: + type: string + sharedCredentialsFile: + type: string + skipCredentialsValidation: + type: boolean + skipMetadataAPICheck: + type: boolean + skipRegionValidation: + type: boolean + sseCustomerKey: + type: string + stsEndpoint: + type: string + token: + type: string + workspaceKeyPrefix: + type: string + required: + - bucket + - key + type: object + target: + properties: + name: + type: string + type: + enum: + - configmap + - secret + type: string + required: + - name + - type + type: object + type: + type: string + required: + - target + - type + type: object + status: + type: object + type: object served: true storage: true + subresources: + status: {} status: acceptedNames: kind: "" diff --git a/helm/amphibian/templates/crds/terraformstate.yaml b/helm/amphibian/templates/crds/terraformstate.yaml index 39683d9..01fcd1c 100644 --- a/helm/amphibian/templates/crds/terraformstate.yaml +++ b/helm/amphibian/templates/crds/terraformstate.yaml @@ -1,10 +1,10 @@ --- -apiVersion: apiextensions.k8s.io/v1beta1 +apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition metadata: annotations: - controller-gen.kubebuilder.io/version: v0.3.0 + controller-gen.kubebuilder.io/version: v0.4.0 creationTimestamp: null name: terraformstates.terraform.patoarvizu.dev spec: @@ -17,244 +17,243 @@ spec: - tfs singular: terraformstate scope: Namespaced - subresources: - status: {} - validation: - openAPIV3Schema: - 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 - metadata: - type: object - spec: - properties: - artifactoryConfig: - properties: - password: - type: string - repo: - type: string - subpath: - type: string - url: - type: string - username: - type: string - required: - - repo - - subpath - type: object - consulConfig: - properties: - accessToken: - type: string - address: - type: string - caFile: - type: string - certFile: - type: string - datacenter: - type: string - httpAuth: - type: string - keyFile: - type: string - path: - type: string - scheme: - type: string - required: - - path - type: object - etcdv3Config: - properties: - caCertPath: - type: string - certPath: - type: string - endpoints: - items: - type: string - nullable: true - type: array - keyPath: - type: string - lock: - type: boolean - maxRequestBytes: - type: string - password: - type: string - prefix: - type: string - username: - type: string - required: - - endpoints - type: object - gcsConfig: - properties: - accessToken: - type: string - bucket: - type: string - credentials: - type: string - impersonateServiceAccount: - type: string - prefix: - type: string - required: - - bucket - type: object - kubernetesConfig: - properties: - configPath: - type: string - host: - type: string - inClusterConfig: - type: boolean - insecure: - type: boolean - namespace: - type: string - secretSuffix: - type: string - required: - - secretSuffix - type: object - postgresConfig: - properties: - connStr: - type: string - schemaName: - type: string - type: object - remoteConfig: - properties: - hostname: - type: string - organization: - type: string - token: - type: string - workspaces: - properties: - name: - type: string - prefix: - type: string - type: object - required: - - hostname - - organization - - workspaces - type: object - s3Config: - properties: - accessKey: - type: string - assumeRoleDurationSeconds: - format: int64 - type: integer - assumeRolePolicy: - type: string - assumeRolePolicyARNs: - items: - type: string - type: array - assumeRoleTags: - additionalProperties: - type: string - type: object - assumeRoleTransitiveTagKeys: - items: - type: string - type: array - bucket: - type: string - endpoint: - type: string - externalID: - type: string - forcePathStyle: - type: boolean - iamEndpoint: - type: string - key: - type: string - kmsKeyID: - type: string - maxRetries: - format: int64 - type: integer - profile: - type: string - region: - type: string - roleARN: - type: string - secretKey: - type: string - sessionName: - type: string - sharedCredentialsFile: - type: string - skipCredentialsValidation: - type: boolean - skipMetadataAPICheck: - type: boolean - skipRegionValidation: - type: boolean - sseCustomerKey: - type: string - stsEndpoint: - type: string - token: - type: string - workspaceKeyPrefix: - type: string - required: - - bucket - - key - type: object - target: - properties: - name: - type: string - type: - enum: - - configmap - - secret - type: string - required: - - name - - type - type: object - type: - type: string - required: - - target - - type - type: object - status: - type: object - type: object - version: v1 versions: - name: v1 + schema: + openAPIV3Schema: + 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 + metadata: + type: object + spec: + properties: + artifactoryConfig: + properties: + password: + type: string + repo: + type: string + subpath: + type: string + url: + type: string + username: + type: string + required: + - repo + - subpath + type: object + consulConfig: + properties: + accessToken: + type: string + address: + type: string + caFile: + type: string + certFile: + type: string + datacenter: + type: string + httpAuth: + type: string + keyFile: + type: string + path: + type: string + scheme: + type: string + required: + - path + type: object + etcdv3Config: + properties: + caCertPath: + type: string + certPath: + type: string + endpoints: + items: + type: string + nullable: true + type: array + keyPath: + type: string + lock: + type: boolean + maxRequestBytes: + type: string + password: + type: string + prefix: + type: string + username: + type: string + required: + - endpoints + type: object + gcsConfig: + properties: + accessToken: + type: string + bucket: + type: string + credentials: + type: string + impersonateServiceAccount: + type: string + prefix: + type: string + required: + - bucket + type: object + kubernetesConfig: + properties: + configPath: + type: string + host: + type: string + inClusterConfig: + type: boolean + insecure: + type: boolean + namespace: + type: string + secretSuffix: + type: string + required: + - secretSuffix + type: object + postgresConfig: + properties: + connStr: + type: string + schemaName: + type: string + type: object + remoteConfig: + properties: + hostname: + type: string + organization: + type: string + token: + type: string + workspaces: + properties: + name: + type: string + prefix: + type: string + type: object + required: + - hostname + - organization + - workspaces + type: object + s3Config: + properties: + accessKey: + type: string + assumeRoleDurationSeconds: + format: int64 + type: integer + assumeRolePolicy: + type: string + assumeRolePolicyARNs: + items: + type: string + type: array + assumeRoleTags: + additionalProperties: + type: string + type: object + assumeRoleTransitiveTagKeys: + items: + type: string + type: array + bucket: + type: string + endpoint: + type: string + externalID: + type: string + forcePathStyle: + type: boolean + iamEndpoint: + type: string + key: + type: string + kmsKeyID: + type: string + maxRetries: + format: int64 + type: integer + profile: + type: string + region: + type: string + roleARN: + type: string + secretKey: + type: string + sessionName: + type: string + sharedCredentialsFile: + type: string + skipCredentialsValidation: + type: boolean + skipMetadataAPICheck: + type: boolean + skipRegionValidation: + type: boolean + sseCustomerKey: + type: string + stsEndpoint: + type: string + token: + type: string + workspaceKeyPrefix: + type: string + required: + - bucket + - key + type: object + target: + properties: + name: + type: string + type: + enum: + - configmap + - secret + type: string + required: + - name + - type + type: object + type: + type: string + required: + - target + - type + type: object + status: + type: object + type: object served: true storage: true + subresources: + status: {} status: acceptedNames: kind: "" From 696a21bcf110ed96b093e8d86722a198c390dc55 Mon Sep 17 00:00:00 2001 From: patoarvizu Date: Sun, 20 Feb 2022 13:51:27 -0500 Subject: [PATCH 2/2] Bump up Helm chart version --- docs/amphibian-0.0.4.tgz | Bin 0 -> 3853 bytes docs/index.md | 2 +- docs/index.yaml | 18 +++++++++++++----- helm/amphibian/Chart.yaml | 2 +- 4 files changed, 15 insertions(+), 7 deletions(-) create mode 100644 docs/amphibian-0.0.4.tgz diff --git a/docs/amphibian-0.0.4.tgz b/docs/amphibian-0.0.4.tgz new file mode 100644 index 0000000000000000000000000000000000000000..931f91d834244a577ed6f877c48d53c0015b1ee4 GIT binary patch literal 3853 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 P00960rz^th09XJ3_UWLr literal 0 HcmV?d00001 diff --git a/docs/index.md b/docs/index.md index 599f3b5..fa4734b 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,6 +1,6 @@ # amphibian -![Version: 0.0.3](https://img.shields.io/badge/Version-0.0.3-informational?style=flat-square) +![Version: 0.0.4](https://img.shields.io/badge/Version-0.0.4-informational?style=flat-square) Amphibian diff --git a/docs/index.yaml b/docs/index.yaml index 3916b63..749e428 100644 --- a/docs/index.yaml +++ b/docs/index.yaml @@ -2,7 +2,15 @@ apiVersion: v1 entries: amphibian: - apiVersion: v2 - created: "2022-02-05T19:37:50.880929-05:00" + created: "2022-02-20T13:50:11.787827-05:00" + description: Amphibian + digest: 942d46248fd469287ed976383e7d272ef2bc9e3b79c9ba64d958b0d048a9017e + name: amphibian + urls: + - https://patoarvizu.github.io/amphibian/amphibian-0.0.4.tgz + version: 0.0.4 + - apiVersion: v2 + created: "2022-02-20T13:50:11.787268-05:00" description: Amphibian digest: b55eee80c27b977068f72ddebfdb4b94cb6b8d6028cec0d425c6fa1f2e166a8a name: amphibian @@ -10,7 +18,7 @@ entries: - https://patoarvizu.github.io/amphibian/amphibian-0.0.3.tgz version: 0.0.3 - apiVersion: v2 - created: "2022-02-05T19:37:50.880402-05:00" + created: "2022-02-20T13:50:11.785296-05:00" description: Amphibian digest: 1dce78945b3827ad313e2528ee4448655c9300f3e9d7432c47044a4248293506 name: amphibian @@ -18,7 +26,7 @@ entries: - https://patoarvizu.github.io/amphibian/amphibian-0.0.2.tgz version: 0.0.2 - apiVersion: v2 - created: "2022-02-05T19:37:50.879542-05:00" + created: "2022-02-20T13:50:11.783592-05:00" description: Amphibian digest: 20160d19184c727bcb2f3a6b0cfe1a4b7f78c94efa8c525457181729ee1bbdfb name: amphibian @@ -26,11 +34,11 @@ entries: - https://patoarvizu.github.io/amphibian/amphibian-0.0.1.tgz version: 0.0.1 - apiVersion: v2 - created: "2022-02-05T19:37:50.87788-05:00" + created: "2022-02-20T13:50:11.782441-05:00" description: Amphibian digest: 3c86045380e383b6585b5d14a7cef94452a369975cff5a33073500158a052889 name: amphibian urls: - https://patoarvizu.github.io/amphibian/amphibian-0.0.0.tgz version: 0.0.0 -generated: "2022-02-05T19:37:50.873991-05:00" +generated: "2022-02-20T13:50:11.781217-05:00" diff --git a/helm/amphibian/Chart.yaml b/helm/amphibian/Chart.yaml index 2d36b30..21a83f0 100644 --- a/helm/amphibian/Chart.yaml +++ b/helm/amphibian/Chart.yaml @@ -1,4 +1,4 @@ apiVersion: v2 description: Amphibian name: amphibian -version: 0.0.3 +version: 0.0.4