-
Notifications
You must be signed in to change notification settings - Fork 39
V3.1.0 #49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
paliwalparitosh
wants to merge
45
commits into
main
Choose a base branch
from
v3.1.0
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
V3.1.0 #49
Changes from 35 commits
Commits
Show all changes
45 commits
Select commit
Hold shift + click to select a range
80ef6a9
adds meta-schema validation
paliwalparitosh d638ac2
moves mgmt_agent module inside helm module
paliwalparitosh cfba9d6
adds helm deployment options
paliwalparitosh 65504ac
converts the helm deloyment option to boolean
paliwalparitosh 23935a9
change mgmt_agent module parent from helm to oke module
paliwalparitosh 6beeb0d
rearrange UI elements
paliwalparitosh da3d6e6
update livelab switch file
paliwalparitosh ccabccf
move livelab specific code to it's own module
paliwalparitosh 986f723
enables module controls; include entity creation for cluster
paliwalparitosh ece683b
add missing input
paliwalparitosh 1dc7b74
includes cluster entity properties
paliwalparitosh e416784
adds input triggered_by_add_data_flow
paliwalparitosh c3427c4
converts deployment options into a dropdown
paliwalparitosh 6ff95ca
adds external values.yaml content as output
paliwalparitosh 4bd32ac
adds optional option input
paliwalparitosh b5ecef4
updates output to generate helm install command
paliwalparitosh 908b6ba
replaces local helm chart wih helm repo
paliwalparitosh c14f20e
updates helm install command
paliwalparitosh 61ad7df
removes cluster entity creation via stack
paliwalparitosh c8b1f7a
adds addtional outputs to contruct helm install command
paliwalparitosh 18ef185
stack output changes and refactor
paliwalparitosh e4a89f9
adds cluster name and cluster entity ocid as optional inputs for the …
paliwalparitosh 46531a9
removes references of ociLAEntityID from helm
paliwalparitosh 56cf530
sets mgmt agent key life-span/expiry to 1 year
paliwalparitosh 33ada92
fixes typos and lang updates
paliwalparitosh 678c6f7
fixes for livelab stack
paliwalparitosh 0d8724e
included content changes as per TC review
paliwalparitosh 8f446bc
tc review fix
paliwalparitosh 5f03ce5
adds option to render templates independently
paliwalparitosh e77bb09
adds lifecycle policy
paliwalparitosh f8035ef
dev_switch_install_helm fix
paliwalparitosh 9038761
ignore vscode metadata'
paliwalparitosh b960bdf
EOL fix
paliwalparitosh 132e5a3
fmt
paliwalparitosh be487b1
ignore local test files
paliwalparitosh d9efd68
replace Default values
paliwalparitosh 183e96e
adds comment to explain default helm repo use
paliwalparitosh 035fbe6
refactor
paliwalparitosh 1bb6358
fix comments
paliwalparitosh abd42f2
update outputs related to helm installation
paliwalparitosh 17e2fea
udpate outputs for helm commands
paliwalparitosh 82258d3
fmt
paliwalparitosh 991c609
hides stack deployment options
paliwalparitosh 0ffa5ec
OCR Image updates
paliwalparitosh 8001523
revert back to correct mgmt_agent OCR image
paliwalparitosh File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,65 +1,69 @@ | ||
# Copyright (c) 2023, Oracle and/or its affiliates. | ||
# Licensed under the Universal Permissive License v1.0 as shown at https://oss.oracle.com/licenses/upl. | ||
|
||
.DS_Store | ||
|
||
#### | ||
## Ignore PEM files | ||
#### | ||
|
||
**.pem | ||
|
||
#### | ||
## gitignore for terraform artifacts | ||
#### | ||
|
||
# Local .terraform directories | ||
**/.terraform/* | ||
|
||
## Terraform Locck files | ||
*.terraform.lock.hcl | ||
|
||
# .tfstate filesdas | ||
*.tfstate | ||
*.tfstate.* | ||
|
||
# Crash log files | ||
crash.log | ||
crash.*.log | ||
|
||
# Exclude all .tfvars files, which are likely to contain sensitive data, such as | ||
# password, private keys, and other secrets. These should not be part of version | ||
# control as they are data points which are potentially sensitive and subject | ||
# to change depending on the environment. | ||
*.tfvars | ||
*.tfvars.json | ||
|
||
# Include sample tfvars | ||
!terraform-sample.tfvars | ||
|
||
# Ignore override files as they are usually used to override resources locally and so | ||
# are not checked in | ||
override.tf | ||
override.tf.json | ||
*_override.tf | ||
*_override.tf.json | ||
|
||
# Include override files you do wish to add to version control using negated pattern | ||
# !example_override.tf | ||
|
||
# Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan | ||
# example: *tfplan* | ||
|
||
# Ignore CLI configuration files | ||
.terraformrc | ||
terraform.rc | ||
|
||
# Ignore util dir | ||
logan/util/* | ||
|
||
# helm-chart | ||
charts/oci-onm/Chart.lock | ||
charts/oci-onm/charts/ | ||
|
||
# zip artifacts | ||
releases/ | ||
# Copyright (c) 2023, Oracle and/or its affiliates. | ||
# Licensed under the Universal Permissive License v1.0 as shown at https://oss.oracle.com/licenses/upl. | ||
|
||
.DS_Store | ||
|
||
#### | ||
## Ignore PEM files | ||
#### | ||
|
||
**.pem | ||
|
||
#### | ||
## gitignore for terraform artifacts | ||
#### | ||
|
||
# Local .terraform directories | ||
**/.terraform/* | ||
|
||
## Terraform Locck files | ||
*.terraform.lock.hcl | ||
|
||
# .tfstate filesdas | ||
*.tfstate | ||
*.tfstate.* | ||
|
||
# Crash log files | ||
crash.log | ||
crash.*.log | ||
|
||
# Exclude all .tfvars files, which are likely to contain sensitive data, such as | ||
# password, private keys, and other secrets. These should not be part of version | ||
# control as they are data points which are potentially sensitive and subject | ||
# to change depending on the environment. | ||
*.tfvars | ||
*.tfvars.json | ||
|
||
# Include sample tfvars | ||
!terraform-sample.tfvars | ||
|
||
# Ignore override files as they are usually used to override resources locally and so | ||
# are not checked in | ||
override.tf | ||
override.tf.json | ||
*_override.tf | ||
*_override.tf.json | ||
|
||
# Include override files you do wish to add to version control using negated pattern | ||
# !example_override.tf | ||
|
||
# Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan | ||
# example: *tfplan* | ||
|
||
# Ignore CLI configuration files | ||
.terraformrc | ||
terraform.rc | ||
|
||
# Ignore util dir | ||
logan/util/* | ||
|
||
# helm-chart | ||
charts/oci-onm/Chart.lock | ||
charts/oci-onm/charts/ | ||
charts/.tests/ | ||
|
||
# zip artifacts | ||
releases/ | ||
|
||
# VSCode | ||
.vscode/ |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.