-
Notifications
You must be signed in to change notification settings - Fork 16
Create Pull Request to apply delta between initial code and near-MVP #11
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
Merged
+6,579
−406
Merged
Changes from all commits
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
9d814ae
Added README.md file
9b5c6b0
Added file CONTRIBUTING.md
2b9ae9f
Updated README.md
27d6290
Updated CONTRIBUTING.md
0cbdd97
Added .gitignore
845664b
On branch master Skeleton, does not pass test.
edburns f2bfd11
Update sample code format to bash in README.md
e01ceff
Test push
80fa9c6
test push
majguo 7e28068
On branch master Iterating
edburns 58a50a7
On branch master
edburns 7478f9d
UI definition for weblogic and auto scaling.
galiacheng 2bf47be
Enhance UI:
20893c5
UI reviewed by team.
596c2f4
Deploy AKS using bicep
8cdac44
Allow to enable azure monitoring.
fcba188
Fix unique name.
993714b
Merged PR 318531: mvn -Pbicep -Ddev -Passembly clean install
edburns 1cf0db0
Merged PR 318634: Proposed pids module.
e924fa3
Merged PR 323147: Create a simple WebLogic Cluster
0051021
Merged PR 328523: Setup networking and resolve comment from pr-323147
007ec91
Merged PR 337599: E2E SSL
f21a260
Merged PR 338855: Update application using template.
44da2c4
Merged PR 340400: Update app: parse sas url that has slash in query s…
8300872
Merged PR 341394: Allow updating weblogic cluster using maintemplate …
6493b5b
Merged PR 343730: Configure Data source
64b4391
Merged PR 343913: Ignore VS Code files
edburns b17b1a5
Merged PR 343925: On branch master Update version for partner center.…
edburns b9d6e3e
Merged PR 344026: Fix MS SQL driver.
3747391
Merged PR 344913: Remote console and security enhancement
88053a9
On branch main: merge remote-tracking branch 'devdiv/master' into main
6eeb6ca
On branch main: modify with UPL licence info in pom file.
6d2890a
On branch main: capitalize product name Helm.
37f4036
On branch main: capitalize product name Kubernetes
820c7e4
On branch main: lowercase name of ingress controller
e599233
On branch main: fix wording in comments.
d8d34fb
On branch main: make sure pv is bound.
4971d00
On branch main: make sure the patching secret string is correct in db…
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
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
Copyright (c) 2021, Oracle Corporation and/or its affiliates. | ||
Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl. | ||
--> | ||
|
||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<!-- mvn -Pbicep -Passembly clean install --> | ||
|
||
<groupId>com.oracle.weblogic.azure</groupId> | ||
<artifactId>wls-on-aks-azure-marketplace</artifactId> | ||
<version>1.0.15</version> | ||
|
||
<parent> | ||
<groupId>com.microsoft.azure.iaas</groupId> | ||
<artifactId>azure-javaee-iaas-parent</artifactId> | ||
<version>1.0.10</version> | ||
<relativePath></relativePath> | ||
</parent> | ||
|
||
<packaging>jar</packaging> | ||
<name>wls-on-aks-azure-marketplace</name> | ||
<properties> | ||
<test.parameters>-TestParameter '@{"PasswordMinLength"=6}'</test.parameters> | ||
</properties> | ||
</project> |
1,062 changes: 1,060 additions & 2 deletions
1,062
weblogic-azure-aks/src/main/arm/createUiDefinition.json
Large diffs are not rendered by default.
Oops, something went wrong.
52 changes: 52 additions & 0 deletions
52
weblogic-azure-aks/src/main/arm/scripts/appgw-helm-config.yaml.template
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 |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# Copyright (c) 2021, Oracle Corporation and/or its affiliates. | ||
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl. | ||
# | ||
# Based on https://raw.githubusercontent.com/Azure/application-gateway-kubernetes-ingress/master/docs/examples/sample-helm-config.yaml | ||
|
||
# This file contains the essential configs for the ingress controller Helm chart | ||
|
||
# Verbosity level of the App Gateway Ingress Controller | ||
verbosityLevel: 3 | ||
|
||
################################################################################ | ||
# Specify which application gateway the ingress controller will manage | ||
# | ||
appgw: | ||
subscriptionId: @SUB_ID@ | ||
resourceGroup: @APPGW_RG_NAME@ | ||
name: @APPGW_NAME@ | ||
usePrivateIP: false | ||
|
||
# Setting appgw.shared to "true" will create an AzureIngressProhibitedTarget CRD. | ||
# This prohibits AGIC from applying config for any host/path. | ||
# Use "kubectl get AzureIngressProhibitedTargets" to view and change this. | ||
shared: false | ||
|
||
################################################################################ | ||
# Specify which Kubernetes namespace the ingress controller will watch | ||
# Default value is "default" | ||
# Leaving this variable out or setting it to blank or empty string would | ||
# result in ingress controller observing all acessible namespaces. | ||
# | ||
kubernetes: | ||
watchNamespace: @WATCH_NAMESPACE@ | ||
|
||
################################################################################ | ||
# Specify the authentication with Azure Resource Manager | ||
# | ||
# Two authentication methods are available: | ||
# - Option 1: AAD-Pod-Identity (https://github.com/Azure/aad-pod-identity) | ||
# armAuth: | ||
# type: aadPodIdentity | ||
# identityResourceID: | ||
# identityClientID: | ||
|
||
armAuth: | ||
type: servicePrincipal | ||
secretJSON: @SP_ENCODING_CREDENTIALS@ | ||
|
||
################################################################################ | ||
# Specify if the cluster is RBAC enabled or not | ||
rbac: | ||
# Specifies whether RBAC resources should be created | ||
create: true |
15 changes: 15 additions & 0 deletions
15
weblogic-azure-aks/src/main/arm/scripts/appgw-ingress-clusterAdmin-roleBinding.yaml
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Copyright (c) 2021, Oracle Corporation and/or its affiliates. | ||
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl. | ||
|
||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRoleBinding | ||
metadata: | ||
name: ingress-azure-admin | ||
roleRef: | ||
apiGroup: rbac.authorization.k8s.io | ||
kind: ClusterRole | ||
name: cluster-admin | ||
subjects: | ||
- kind: ServiceAccount | ||
name: ingress-azure | ||
namespace: default |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
export checkPodStatusInterval=20 # interval of checking pod status. | ||
export checkPodStatusMaxAttemps=30 # max attempt to check pod status. | ||
export checkPVStateInterval=5 # interval of checking pvc status. | ||
export checkPVStateMaxAttempt=10 # max attempt to check pvc status. | ||
|
||
export constFalse="false" | ||
export constTrue="true" | ||
|
||
export curlMaxTime=120 # seconds | ||
export ocrLoginServer="container-registry.oracle.com" | ||
export optUninstallMaxTry=5 # Max attempts to wait for the operator uninstalled | ||
export optUninstallInterval=10 | ||
|
||
export wlsContainerName="weblogic-server" |
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.