-
Notifications
You must be signed in to change notification settings - Fork 387
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SONAR-21727 implement mpdev verify tests command
NO-JIRA temporary fix missing application crd in test waiting for datreeio/CRDs-catalog#276 merge update partner name and partner id update partner id and fix tests
- Loading branch information
Showing
10 changed files
with
780 additions
and
7 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
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
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,78 @@ | ||
x-google-marketplace: | ||
clusterConstraints: | ||
istio: | ||
type: UNSUPPORTED | ||
schemaVersion: v2 | ||
applicationApiVersion: v1beta1 | ||
publishedVersion: '10.4.0' | ||
publishedVersionMetadata: | ||
releaseNote: >- | ||
A first release. | ||
images: | ||
'': | ||
properties: | ||
ApplicationNodes.image.repository: | ||
type: REPO_WITH_REGISTRY | ||
ApplicationNodes.image.tag: | ||
type: TAG | ||
sonarqube-dce-search: | ||
properties: | ||
searchNodes.image.repository: | ||
type: REPO_WITH_REGISTRY | ||
searchNodes.image.tag: | ||
type: TAG | ||
|
||
properties: | ||
name: | ||
type: string | ||
x-google-marketplace: | ||
type: NAME | ||
namespace: | ||
type: string | ||
x-google-marketplace: | ||
type: NAMESPACE | ||
appUid: | ||
type: string | ||
x-google-marketplace: | ||
type: APPLICATION_UID | ||
applicationUid: | ||
generatedProperties: | ||
createApplicationBoolean: application.create | ||
ApplicationNodes.jwtSecret: | ||
title: JWT Token for app authentication | ||
description: A HS256 key encoded with base64 (This value must be set before installing the app, see documentation for more details) | ||
maxLength: 44 | ||
type: string | ||
default: dZ0EB0KxnF++nr5+4vfTCaun/eWbv6gOoXodiAMqcFo= | ||
x-google-marketplace: | ||
type: MASKED_FIELD | ||
postgresql.enabled: | ||
title: Enable embedeed PostgreSQL | ||
description: If true, PostgreSQL will be installed (not recommended for production use case) | ||
type: boolean | ||
default: true | ||
jdbcOverwrite.enable: | ||
title: Enable external DB configuration | ||
description: If true, the JDBC URL, username and password will be used to connect to the database. Make sure enable embedeed PostgreSQL is set to false | ||
type: boolean | ||
default: false | ||
jdbcOverwrite.jdbcUrl: | ||
title: JDBC URL | ||
description: The JDBC URL to connect to the database | ||
type: string | ||
default: '' | ||
jdbcOverwrite.jdbcUsername: | ||
title: JDBC Username | ||
description: The username to connect to the database | ||
type: string | ||
default: '' | ||
jdbcOverwrite.jdbcPassword: | ||
title: JDBC Password | ||
description: The password to connect to the database | ||
type: string | ||
default: '' | ||
|
||
required: | ||
- name | ||
- namespace | ||
- ApplicationNodes.jwtSecret |
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 |
---|---|---|
@@ -0,0 +1,158 @@ | ||
{ | ||
"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" | ||
}, | ||
"metadata": { | ||
"type": "object" | ||
}, | ||
"spec": { | ||
"description": "ApplicationSpec defines the specification for an Application.", | ||
"properties": { | ||
"assemblyPhase": { | ||
"type": "string" | ||
}, | ||
"componentKinds": { | ||
"description": "ComponentGroupKinds is a list of Kinds for Application's components (e.g. Deployments, Pods, Services, CRDs). It can be used in conjunction with the Application's Selector to list or watch the Applications components.", | ||
"items": { | ||
"description": "GroupKind specifies a Group and a Kind, but does not force a version. This is useful for identifying concepts during lookup stages without having partially valid types", | ||
"properties": { | ||
"group": { | ||
"type": "string" | ||
}, | ||
"kind": { | ||
"type": "string" | ||
} | ||
}, | ||
"type": "object", | ||
"additionalProperties": false | ||
}, | ||
"type": "array" | ||
}, | ||
"description": { | ||
"type": "string" | ||
}, | ||
"info": { | ||
"description": "Info contains human readable key,value pairs for the Application.", | ||
"items": { | ||
"description": "InfoItem is a human readable key,value pair containing important information about how to access the Application.", | ||
"properties": { | ||
"name": { | ||
"description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", | ||
"type": "string" | ||
}, | ||
"value": { | ||
"type": "string" | ||
} | ||
}, | ||
"type": "object", | ||
"additionalProperties": false | ||
}, | ||
"type": "array" | ||
}, | ||
"keywords": { | ||
"items": { | ||
"type": "string" | ||
}, | ||
"type": "array" | ||
}, | ||
"links": { | ||
"items": { | ||
"properties": { | ||
"description": { | ||
"type": "string" | ||
}, | ||
"url": { | ||
"type": "string" | ||
} | ||
}, | ||
"type": "object", | ||
"additionalProperties": false | ||
}, | ||
"type": "array" | ||
}, | ||
"maintainers": { | ||
"items": { | ||
"properties": { | ||
"email": { | ||
"type": "string" | ||
}, | ||
"name": { | ||
"type": "string" | ||
}, | ||
"url": { | ||
"type": "string" | ||
} | ||
}, | ||
"type": "object", | ||
"additionalProperties": false | ||
}, | ||
"type": "array" | ||
}, | ||
"notes": { | ||
"type": "string" | ||
}, | ||
"owners": { | ||
"items": { | ||
"type": "string" | ||
}, | ||
"type": "array" | ||
}, | ||
"selector": { | ||
"properties": { | ||
"matchExpressions": { | ||
"items": { | ||
"properties": { | ||
"key": { | ||
"type": "string" | ||
}, | ||
"operator": { | ||
"type": "string" | ||
}, | ||
"values": { | ||
"items": { | ||
"type": "string" | ||
}, | ||
"type": "array" | ||
} | ||
}, | ||
"type": "object", | ||
"additionalProperties": false | ||
}, | ||
"type": "array" | ||
}, | ||
"matchLabels": { | ||
"type": "object" | ||
} | ||
}, | ||
"type": "object", | ||
"additionalProperties": false | ||
}, | ||
"type": { | ||
"type": "string" | ||
}, | ||
"version": { | ||
"type": "string" | ||
} | ||
}, | ||
"type": "object", | ||
"additionalProperties": false | ||
}, | ||
"status": { | ||
"properties": { | ||
"observedGeneration": { | ||
"type": "integer" | ||
} | ||
}, | ||
"type": "object", | ||
"additionalProperties": false | ||
} | ||
}, | ||
"type": "object" | ||
} |
Oops, something went wrong.