github.com/verrazzano/verrazzano@v1.7.1/tests/testdata/test-applications/weblogic/hello-weblogic/hello-wls-comp.yaml (about) 1 # Copyright (c) 2022, Oracle and/or its affiliates. 2 # Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl. 3 4 apiVersion: core.oam.dev/v1alpha2 5 kind: Component 6 metadata: 7 name: hello-domain 8 spec: 9 workload: 10 apiVersion: oam.verrazzano.io/v1alpha1 11 kind: VerrazzanoWebLogicWorkload 12 spec: 13 template: 14 apiVersion: weblogic.oracle/v9 15 metadata: 16 name: hello-domain 17 spec: 18 adminServer: 19 adminChannelPortForwardingEnabled: true 20 domainUID: hellodomain 21 domainHome: /u01/domains/hellodomain 22 image: container-registry.oracle.com/middleware/weblogic:12.2.1.4 23 imagePullSecrets: 24 - name: hellodomain-repo-credentials 25 domainHomeSourceType: "FromModel" 26 includeServerOutInPodLog: true 27 replicas: 1 28 webLogicCredentialsSecret: 29 name: hellodomain-weblogic-credentials 30 configuration: 31 introspectorJobActiveDeadlineSeconds: 900 32 model: 33 auxiliaryImages: 34 - image: ghcr.io/verrazzano/weblogic-app:1.0.0-1-20220319111617-b157b52a 35 domainType: WLS 36 runtimeEncryptionSecret: hellodomain-runtime-encrypt-secret 37 serverPod: 38 labels: 39 app: hello-domain 40 version: v1 41 env: 42 - name: JAVA_OPTIONS 43 value: "-Dweblogic.StdoutDebugEnabled=false" 44 - name: USER_MEM_ARGS 45 value: "-Djava.security.egd=file:/dev/./urandom -Xms64m -Xmx256m " 46 - name: WL_HOME 47 value: /u01/oracle/wlserver 48 - name: MW_HOME 49 value: /u01/oracle