Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
3c70ce9
fix: change deploy_param processing in case of collision (#957)
miyamuraga Jan 27, 2026
40f6276
chore: Update docker image tags and envgene_version for branch main […
Jan 27, 2026
a823f45
docs: Separate the Application/Registry Definitions processing logic …
popoveugene Jan 27, 2026
d135cdf
feat: Add tracebitity comments in effective Set and Clarify the prior…
popoveugene Jan 27, 2026
bfdec6b
docs: update pipeline description (#962)
popoveugene Jan 27, 2026
9033b55
feat: Separate the Application/Registry Definitions processing logic …
dysmon Jan 28, 2026
5a0fdbd
chore: Update docker image tags and envgene_version for branch main […
Jan 28, 2026
69c55b4
docs: unify-logging (#967)
miyamuraga Jan 28, 2026
1b1de0c
feat: 850 Deploy postfix handling for BGD cases (#965)
sivareddyit Jan 28, 2026
ba32571
chore: Update docker image tags and envgene_version for branch main […
Jan 29, 2026
090ff43
feat: Removed the values from pipeline_vars.env (#968)
andyroode Jan 29, 2026
4542f66
chore: Update docker image tags and envgene_version for branch main […
Jan 29, 2026
59d9229
feat: Added new separators for ENV_NAMES (#969)
andyroode Jan 29, 2026
f0ec403
feat: Added APP_REG_DEF_PROCESS job to Envgene Instance Pipeline (Git…
andyroode Jan 30, 2026
8d5c5ab
chore: Update docker image tags and envgene_version for branch main […
Jan 30, 2026
e81f267
feat: Implement new pipeline parameter "ENV_INVENTORY_CONTENT" for cr…
miyamuraga Feb 2, 2026
7d6795e
chore: Update docker image tags and envgene_version for branch main […
Feb 2, 2026
1a38459
fix: validation for inv gen job (#984)
miyamuraga Feb 3, 2026
656fd77
chore: Update docker image tags and envgene_version for branch main […
Feb 3, 2026
3ee0e0f
fix: skip env def validation for ENV_INVENTORY_CONTENT
miyamuraga Feb 3, 2026
9538570
feat: Enhance Test data for Calculator CLI
GeethaGadde99 Feb 3, 2026
50594f3
Merge remote-tracking branch 'origin/main' into feature/Enhance-The-T…
GeethaGadde99 Feb 3, 2026
6e2f105
feat: Enhance Test data for Calculator CLI
GeethaGadde99 Feb 3, 2026
452b41c
feat: Enhance Test data for Calculator CLI
GeethaGadde99 Feb 4, 2026
2a5136b
Merge branch 'feature/Enhance-Test-data-for-Calculator-CLI' into feat…
GeethaGadde99 Feb 4, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ deployParameters:
app_version: "3.0"
ssl_enabled: true
debug_mode_test: "true"
api_port: ${server_port}
service_version: ${app_version}
use_ssl: ${ssl_enabled}
log_level: ${debug_mode_test}
ENVGENE_CONFIG_REF_NAME: "branch_name"
ENVGENE_CONFIG_TAG: "No Ref tag"
KMS_CERT_IN_BASE64: "${creds.get( \"kms-cert\" ).secret}" # paramset: test-deploy-creds version: 1 source: template
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ api_config:
connection:
host: db.example.com
port: 5432
api_port: 8080
app_version: '3.0'
bss-app-exist: false
core:
Expand All @@ -89,14 +90,17 @@ database_config:
host: db.example.com
port: 5432
debug_mode_test: 'true'
log_level: 'true'
rendered_template: |-
services:
api:
image: api:latest
ports:
- 8080:8080
server_port: 8080
service_version: '3.0'
ssl_enabled: true
use_ssl: true
yaml_template: |-
services:
api:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ api_config: &id001
connection:
host: db.example.com
port: 5432
api_port: 8080
app_version: '3.0'
bss-app-exist: false
core: &id002
Expand All @@ -90,14 +91,17 @@ database_config: &id003
host: db.example.com
port: 5432
debug_mode_test: 'true'
log_level: 'true'
rendered_template: |-
services:
api:
image: api:latest
ports:
- 8080:8080
server_port: 8080
service_version: '3.0'
ssl_enabled: true
use_ssl: true
yaml_template: |-
services:
api:
Expand Down Expand Up @@ -182,19 +186,23 @@ global: &id004
ZOOKEEPER_ADDRESS: zookeeper.zookeeper:2181
ZOOKEEPER_URL: zookeeper.zookeeper:2181
api_config: *id001
api_port: 8080
app_version: '3.0'
bss-app-exist: false
core: *id002
database_config: *id003
debug_mode_test: 'true'
log_level: 'true'
rendered_template: |-
services:
api:
image: api:latest
ports:
- 8080:8080
server_port: 8080
service_version: '3.0'
ssl_enabled: true
use_ssl: true
yaml_template: |-
services:
api:
Expand Down
Loading