Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
org.etsi.osl.model.k8s
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OSL
code
org.etsi.osl.model.k8s
Merge requests
!10
MR for Release 2024Q4
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
MR for Release 2024Q4
develop
into
main
Overview
0
Commits
11
Pipelines
1
Changes
6
Merged
trantzas
requested to merge
develop
into
main
4 months ago
Overview
0
Commits
11
Pipelines
1
Changes
6
Expand
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
8c8e53f5
11 commits,
4 months ago
6 files
+
479
−
11
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
Search (e.g. *.vue) (Ctrl+P)
src/main/java/org/etsi/osl/domain/model/kubernetes/KubernetesCRV1.java
+
2
−
2
Options
@@ -115,7 +115,7 @@ public class KubernetesCRV1 extends DomainModelDefinition
rsc
.
addResourceSpecificationCharacteristicItemShort
(
"UID"
,
""
,
EValueType
.
TEXT
.
getValue
(),
""
,
false
);
rsc
.
addResourceSpecificationCharacteristicItemShort
(
"namespace"
,
""
,
EValueType
.
TEXT
.
getValue
(),
""
,
false
);
rsc
.
addResourceSpecificationCharacteristicItemShort
(
"metadata"
,
""
,
EValueType
.
TEXT
.
getValue
(),
""
,
false
);
rsc
.
addResourceSpecificationCharacteristicItemShort
(
"yaml"
,
""
,
EValueType
.
TEXT
.
getValue
(),
""
,
false
);
//
rsc.addResourceSpecificationCharacteristicItemShort( "yaml", "", EValueType.TEXT.getValue(), "", false);
rsc
.
addResourceSpecificationCharacteristicItemShort
(
"json"
,
""
,
EValueType
.
TEXT
.
getValue
(),
""
,
false
);
rsc
.
addResourceSpecificationCharacteristicItemShort
(
"_CR_SPEC"
,
""
,
EValueType
.
TEXT
.
getValue
(),
"Used for providing the json Custom Resource description to apply"
,
false
);
@@ -179,7 +179,7 @@ public class KubernetesCRV1 extends DomainModelDefinition
rs
.
addResourceCharacteristicItemShort
(
"UID"
,
this
.
UID
,
EValueType
.
TEXT
.
getValue
());
rs
.
addResourceCharacteristicItemShort
(
"namespace"
,
this
.
namespace
,
EValueType
.
TEXT
.
getValue
());
rs
.
addResourceCharacteristicItemShort
(
"metadata"
,
this
.
metadata
,
EValueType
.
TEXT
.
getValue
());
rs
.
addResourceCharacteristicItemShort
(
"yaml"
,
this
.
yaml
,
EValueType
.
TEXT
.
getValue
());
//
rs.addResourceCharacteristicItemShort("yaml", this.yaml, EValueType.TEXT.getValue());
rs
.
addResourceCharacteristicItemShort
(
"json"
,
this
.
json
,
EValueType
.
TEXT
.
getValue
());
Loading