Skip to content

Commit c7ecace

Browse files
committed
initial commit
0 parents  commit c7ecace

File tree

707 files changed

+64397
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

707 files changed

+64397
-0
lines changed

.gitignore

+104
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
*~
2+
*#
3+
.#*
4+
5+
# Dependency directories
6+
**/node_modules/
7+
**/bower_components/
8+
9+
# Optional npm cache directory
10+
.npm
11+
12+
# IntelliJ project files
13+
**/*.iml
14+
.idea
15+
16+
# Visual Studio Code project files
17+
.vscode/*
18+
#!.vscode/settings.json
19+
#!.vscode/tasks.json
20+
#!.vscode/launch.json
21+
#!.vscode/extensions.json
22+
*.code-workspace
23+
24+
# Local History for Visual Studio Code
25+
.history/
26+
27+
# IDEs and editors
28+
.project
29+
.classpath
30+
.c9/
31+
*.launch
32+
.settings/
33+
*.sublime-workspace
34+
35+
# compiled output
36+
/dist
37+
/tmp
38+
/out-tsc
39+
/tools/imagetool
40+
/tools/weblogic-deploy
41+
/out
42+
/docker.env
43+
44+
# Runtime data
45+
pids
46+
*.pid
47+
*.seed
48+
*.pid.lock
49+
50+
# Directory for instrumented libs generated by jscoverage/JSCover
51+
lib-cov
52+
53+
# Coverage directory used by tools like istanbul
54+
coverage
55+
56+
# nyc test coverage
57+
.nyc_output
58+
59+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
60+
.grunt
61+
62+
# node-waf configuration
63+
.lock-wscript
64+
65+
# sonar scanner
66+
.scannerwork
67+
sonar-project.properties
68+
69+
# misc
70+
.sass-cache
71+
connect.lock
72+
typings
73+
74+
# Logs
75+
**/logs
76+
**/*.log
77+
**/npm-debug.log*
78+
**/yarn-debug.log*
79+
**/yarn-error.log*
80+
81+
# Optional eslint cache
82+
.eslintcache
83+
84+
# Optional REPL history
85+
.node_repl_history
86+
87+
# Output of 'npm pack'
88+
**/*.tgz
89+
90+
# Yarn Integrity file
91+
.yarn-integrity
92+
93+
# dotenv environment variables file
94+
.env
95+
96+
# next.js build output
97+
.next
98+
99+
# Lerna
100+
lerna-debug.log
101+
102+
# System Files
103+
.DS_Store
104+
Thumbs.db

Jenkinsfile

+329
Large diffs are not rendered by default.

LICENSE.txt

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
Copyright (c) 2021, Oracle and/or its affiliates. All rights reserved.
2+
3+
Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
4+
5+
Subject to the condition set forth below, permission is hereby granted to any
6+
person obtaining a copy of this software, associated documentation and/or data
7+
(collectively the "Software"), free of charge and under any and all copyright
8+
rights in the Software, and any and all patent rights owned or freely
9+
licensable by each licensor hereunder covering either (i) the unmodified
10+
Software as contributed to or provided by such licensor, or (ii) the Larger
11+
Works (as defined below), to deal in both
12+
13+
(a) the Software, and
14+
(b) any piece of software and/or hardware listed in the lrgrwrks.txt file if
15+
one is included with the Software (each a "Larger Work" to which the Software
16+
is contributed by such licensors),
17+
18+
without restriction, including without limitation the rights to copy, create
19+
derivative works of, display, perform, and distribute the Software and make,
20+
use, sell, offer for sale, import, export, have made, and have sold the
21+
Software and the Larger Work(s), and to sublicense the foregoing rights on
22+
either these or other terms.
23+
24+
This license is subject to the following condition:
25+
The above copyright notice and either this complete permission notice or at
26+
a minimum a reference to the UPL must be included in all copies or
27+
substantial portions of the Software.
28+
29+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
30+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
31+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
32+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
33+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
34+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
35+
SOFTWARE.

README.md

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# WebLogic Kubernetes Toolkit UI
2+
The WebLogic Kubernetes Toolkit (WKT) is a collection of open source tools that help you provision WebLogic-based
3+
applications to run in Linux containers on a Kubernetes cluster. WKT includes the following tools:
4+
5+
- [WebLogic Deploy Tooling (WDT)](https://github.com/oracle/weblogic-deploy-tooling) - A set of single-purpose,
6+
lifecycle tools that operate off of a single metadata model representation of a WebLogic domain.
7+
- [WebLogic Image Tool (WIT)](https://github.com/oracle/weblogic-image-tool) - A tool for creating Linux container
8+
images for running WebLogic domains.
9+
- [WebLogic Kubernetes Operator (WKO)](https://github.com/oracle/weblogic-kubernetes-operator) - A Kubernetes operator
10+
that allows WebLogic domains to run natively in a Kubernetes cluster.
11+
12+
The WKT UI provides a graphical user interface that wraps the WKT tools, Docker, Helm, and the Kubernetes client
13+
(`kubectl`) and helps guide you through the process of creating and modifying a model of your WebLogic domain, creating
14+
a Linux container image to use to run the domain, and setting up and deploying the software and configuration
15+
necessary to deploy and access the domain in your Kubernetes cluster.
16+
17+
## Get Started
18+
19+
Download the latest WebLogic Kubernetes Toolkit UI application here.
20+
21+
(How to install and whatever else is needed to get started can go either here (if brief) or in a separate doc.)
22+
23+
Initial launch of the application displays a thorough "Introduction" to the WKT UI. Step through
24+
it or dismiss it; you can peruse it at any time using `Help > Show Introduction`.
25+
26+
## About the Documentation
27+
For detailed user information, read the following:
28+
29+
- WebLogic Kubernetes Toolkit UI [Prerequisites](site/prerequisites.md)
30+
- About the [WKT UI Application](site/setup.md)
31+
- [Navigate the WKT UI](site/project-settings.md)
32+
- [Model](site/model.md)
33+
- [Image](site/image.md)
34+
- [Kubernetes](site/k8s-client-config.md)
35+
- [Verrazzano](site/verrazzano.md)
36+
37+
For developer information, see [WebLogic Kubernetes Toolkit UI Project](site/developer.md).
38+
39+
## Get Help
40+
41+
We have a closely monitored public Slack channel where you can get in touch with us to ask questions about using the
42+
WebLogic Toolkit UI or give us feedback or suggestions about what features and improvements you would like to see.
43+
We would love to hear from you.
44+
45+
## Related Projects
46+
For detailed documentation and access to WebLogic Toolkit-related projects, see:
47+
48+
- [WebLogic Kubernetes Operator](https://oracle.github.io/weblogic-kubernetes-operator/)
49+
- [WebLogic Deploy Tooling](https://oracle.github.io/weblogic-deploy-tooling/)
50+
- [WebLogic Image Tool](https://oracle.github.io/weblogic-image-tool/)

0 commit comments

Comments
 (0)