-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from Adeesh-devanand/patch-3
Patch 3
- Loading branch information
Showing
15 changed files
with
204 additions
and
23 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 |
---|---|---|
|
@@ -4,3 +4,4 @@ main | |
configurator | ||
.history | ||
.vscode | ||
.idea |
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
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 |
---|---|---|
@@ -1,14 +1,38 @@ | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: customconfigmaps.configurator.gopaddle.io | ||
spec: | ||
group: configurator.gopaddle.io | ||
version: v1alpha1 | ||
names: | ||
kind: CustomConfigMap | ||
plural: customconfigmaps | ||
singular: customconfigmap | ||
shortNames: | ||
- ccm | ||
scope: Namespaced | ||
versions: | ||
- name: v1alpha1 | ||
served: true | ||
storage: true | ||
schema: | ||
openAPIV3Schema: | ||
type: object | ||
properties: | ||
apiVersion: | ||
type: string | ||
kind: | ||
type: string | ||
metadata: | ||
type: object | ||
spec: | ||
type: object | ||
properties: | ||
configMapName: | ||
type: string | ||
data: | ||
x-kubernetes-preserve-unknown-fields: true | ||
type: object | ||
binaryData: | ||
x-kubernetes-preserve-unknown-fields: true | ||
type: object |
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 |
---|---|---|
@@ -1,14 +1,43 @@ | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: customsecrets.configurator.gopaddle.io | ||
spec: | ||
group: configurator.gopaddle.io | ||
version: v1alpha1 | ||
names: | ||
kind: CustomSecret | ||
plural: customsecrets | ||
singular: customsecret | ||
shortNames: | ||
- ccs | ||
scope: Namespaced | ||
versions: | ||
- name: v1alpha1 | ||
served: true | ||
storage: true | ||
schema: | ||
openAPIV3Schema: | ||
type: object | ||
properties: | ||
apiVersion: | ||
type: string | ||
kind: | ||
type: string | ||
metadata: | ||
type: object | ||
spec: | ||
type: object | ||
properties: | ||
secretName: | ||
type: string | ||
type: | ||
type: string | ||
data: | ||
x-kubernetes-preserve-unknown-fields: true | ||
type: object | ||
stringData: | ||
x-kubernetes-preserve-unknown-fields: true | ||
type: object | ||
secretAnnotations: | ||
x-kubernetes-preserve-unknown-fields: true | ||
type: object |
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,18 @@ | ||
--- | ||
permalink: /contribute/meetings/2021-10-06/ | ||
title: false | ||
layout: single | ||
read_time: false | ||
author_profile: false | ||
share: false | ||
comments: false | ||
sidebar: | ||
nav: "contribute" | ||
--- | ||
|
||
## 6th October 2021 | ||
|
||
<iframe width="560" height="315" src="https://www.youtube.com/embed/mGZ339cT8gM" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> | ||
|
||
### Agenda | ||
* Review Configurator Architecture |
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,15 @@ | ||
--- | ||
permalink: /contribute/meetings/2021-10-13/ | ||
title: false | ||
layout: single | ||
read_time: false | ||
author_profile: false | ||
share: false | ||
comments: false | ||
sidebar: | ||
nav: "contribute" | ||
--- | ||
|
||
## 13th October 2021 | ||
|
||
Meeting Unavailable |
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,21 @@ | ||
--- | ||
permalink: /contribute/meetings/2021-10-20/ | ||
title: false | ||
layout: single | ||
read_time: false | ||
author_profile: false | ||
share: false | ||
comments: false | ||
sidebar: | ||
nav: "contribute" | ||
--- | ||
|
||
## 20th October 2021 | ||
|
||
Recording Currently Unavaiable | ||
|
||
### Agenda | ||
#### Review Issues | ||
* #53 Support for CRD creation in K8s v1.22 | ||
* #54 CustomSecret breaks the data format while creating Secrets | ||
* Architecture Revamp |
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
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
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
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
33 changes: 28 additions & 5 deletions
33
helm-src/configurator/templates/crds/crd-customConfigMap.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 |
---|---|---|
@@ -1,18 +1,41 @@ | ||
{{- if .Values.installCrds -}} | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: customconfigmaps.configurator.gopaddle.io | ||
annotations: | ||
"helm.sh/resource-policy": keep | ||
spec: | ||
group: configurator.gopaddle.io | ||
version: v1alpha1 | ||
names: | ||
kind: CustomConfigMap | ||
plural: customconfigmaps | ||
singular: customconfigmap | ||
shortNames: | ||
- ccm | ||
- ccm | ||
scope: Namespaced | ||
versions: | ||
- name: v1alpha1 | ||
served: true | ||
storage: true | ||
schema: | ||
openAPIV3Schema: | ||
type: object | ||
properties: | ||
apiVersion: | ||
type: string | ||
kind: | ||
type: string | ||
metadata: | ||
type: object | ||
spec: | ||
type: object | ||
properties: | ||
configMapName: | ||
type: string | ||
data: | ||
x-kubernetes-preserve-unknown-fields: true | ||
type: object | ||
binaryData: | ||
x-kubernetes-preserve-unknown-fields: true | ||
type: object | ||
|
||
{{- end -}} |
38 changes: 33 additions & 5 deletions
38
helm-src/configurator/templates/crds/crd-customSecret.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 |
---|---|---|
@@ -1,18 +1,46 @@ | ||
{{- if .Values.installCrds -}} | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: customsecrets.configurator.gopaddle.io | ||
annotations: | ||
"helm.sh/resource-policy": keep | ||
spec: | ||
group: configurator.gopaddle.io | ||
version: v1alpha1 | ||
names: | ||
kind: CustomSecret | ||
plural: customsecrets | ||
singular: customsecret | ||
shortNames: | ||
- ccs | ||
- ccs | ||
scope: Namespaced | ||
versions: | ||
- name: v1alpha1 | ||
served: true | ||
storage: true | ||
schema: | ||
openAPIV3Schema: | ||
type: object | ||
properties: | ||
apiVersion: | ||
type: string | ||
kind: | ||
type: string | ||
metadata: | ||
type: object | ||
spec: | ||
type: object | ||
properties: | ||
secretName: | ||
type: string | ||
type: | ||
type: string | ||
data: | ||
x-kubernetes-preserve-unknown-fields: true | ||
type: object | ||
stringData: | ||
x-kubernetes-preserve-unknown-fields: true | ||
type: object | ||
secretAnnotations: | ||
x-kubernetes-preserve-unknown-fields: true | ||
type: object | ||
|
||
{{- end -}} |
Binary file not shown.
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