-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Changes for v0.0.7 version of operator * Formatting configmap * Fixing indentation * Fixing indentation * Fix the service account name in values.yaml * Adding gitignore file * Updating README file * Adding templating logic to operator * Clean up the values.yaml * Adding database description to readme, updating maintainers * Adding namespace templating logic * Updating namespace templating logic * Templatizing the namePrefix of the operator * Adding back terminationGracePeriodSeconds in deployment controller
- Loading branch information
Showing
23 changed files
with
435 additions
and
171 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,37 @@ | ||
# General files for the project | ||
pkg/* | ||
*.pyc | ||
bin/* | ||
.project | ||
/.bin | ||
/_test/secrets/*.json | ||
|
||
# OSX leaves these everywhere on SMB shares | ||
._* | ||
|
||
# OSX trash | ||
.DS_Store | ||
|
||
# Files generated by JetBrains IDEs, e.g. IntelliJ IDEA | ||
.idea/ | ||
*.iml | ||
|
||
# Vscode files | ||
.vscode | ||
|
||
# Emacs save files | ||
*~ | ||
\#*\# | ||
.\#* | ||
|
||
# Vim-related files | ||
[._]*.s[a-w][a-z] | ||
[._]s[a-w][a-z] | ||
*.un~ | ||
Session.vim | ||
.netrwhist | ||
|
||
# Chart dependencies | ||
**/charts/*.tgz | ||
|
||
.history |
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 |
---|---|---|
|
@@ -2,9 +2,11 @@ apiVersion: v2 | |
name: ndb-operator | ||
description: A Helm chart for Nutanix Database Kubernetes Operator | ||
type: application | ||
version: 0.0.6 | ||
appVersion: "v0.0.6" | ||
version: 0.0.7 | ||
appVersion: v0.0.7 | ||
maintainers: | ||
- name: mazin-s | ||
email: [email protected] | ||
- name: akshmish | ||
email: [email protected] | ||
- name: shenoypritika | ||
|
@@ -21,12 +23,20 @@ icon: https://www.nutanix.com/content/dam/nutanix/global/icons/products/svg/Nuta | |
annotations: | ||
artifacthub.io/changes: | | ||
- kind: added | ||
description: "Ability to provide Time Machine / SLA information" | ||
- kind: fixed | ||
description: "Error handling and minor bug fixes" | ||
description: "Added the K8s Webhooks support for the validation of database specs" | ||
- kind: added | ||
description: "Added Provisioning Operation Id to the DB Status" | ||
- kind: added | ||
description: "Integrated Kubernetes events with the operator" | ||
- kind: added | ||
description: "Added description property for Database in the database specs" | ||
- kind: added | ||
description: "Added end-to-end tests for automated testing of operator" | ||
artifacthub.io/containsSecurityUpdates: "false" | ||
artifacthub.io/license: Apache-2.0 | ||
artifacthub.io/maintainers: | | ||
- name: Mazin Shaaeldin | ||
email: [email protected] | ||
- name: Akshay Mishra | ||
email: [email protected] | ||
- name: Pritika Shenoy | ||
|
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
Oops, something went wrong.