https://github.com/codelibs/kubernetes-fess
Fess on Kubernetes
https://github.com/codelibs/kubernetes-fess
fess kubernetes
Last synced: 3 months ago
JSON representation
Fess on Kubernetes
- Host: GitHub
- URL: https://github.com/codelibs/kubernetes-fess
- Owner: codelibs
- Created: 2021-05-18T12:54:47.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-05-20T02:30:59.000Z (about 4 years ago)
- Last Synced: 2025-01-28T10:36:19.636Z (5 months ago)
- Topics: fess, kubernetes
- Language: Shell
- Homepage:
- Size: 5.86 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Fess on Kubernetes
fessctl is an utitly to manage [Fess](https://fess.codelibs.org/) on Kubernetes.
fessctl creates Kubernetes cluster on [kind](https://kind.sigs.k8s.io/) as default.## Usage
### Create Fess on Kubernetes
```
$ ./fessctl create -k kind
```-k option is kubernetes type. You can spcify `kind` or `eks`.
### Proxy Access
#### Elasticsearch
Run a proxy as below:
```
$ ./fessctl proxy -t elasticsearch
```and then
```
$ ./fessctl curl https://localhost:9200
```#### Fess
Run a proxy as below:
```
$ ./fessctl proxy
```and then
```
$ curl https://localhost:8080
```### Delete Fess on Kubernetes
```
$ ./fessctl delete -k kind
```