Skip to content

Commit

Permalink
docs: rename cassette client into cassette app
Browse files Browse the repository at this point in the history
  • Loading branch information
HoKim98 committed Jul 11, 2024
1 parent 122c804 commit 4e693e2
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 19 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ TBD

## Building

### Cassette Client
### Cassette App

#### Dependencies

Expand Down Expand Up @@ -106,7 +106,7 @@ docker run --name cassette --rm \
"quay.io/ulagbulag/cassette-server:latest" \
'cassette-gateway'

# Client
# App
docker run --name cassette --rm \
-p 6080:6080 \
"quay.io/ulagbulag/cassette:latest"
Expand Down
12 changes: 6 additions & 6 deletions kubernetes/client.yaml → kubernetes/app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: client
name: app
namespace: cassette-operator
labels:
app: client
app: app
serviceType: public
spec:
replicas: 1
Expand All @@ -14,13 +14,13 @@ spec:
maxUnavailable: 1
selector:
matchLabels:
app: client
app: app
template:
metadata:
annotations:
instrumentation.opentelemetry.io/inject-sdk: "true"
labels:
app: client
app: app
serviceType: public
spec:
affinity:
Expand Down Expand Up @@ -77,11 +77,11 @@ spec:
apiVersion: v1
kind: Service
metadata:
name: client
name: app
namespace: cassette-operator
spec:
selector:
app: client
app: app
ports:
- name: http
port: 80
Expand Down
22 changes: 11 additions & 11 deletions kubernetes/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,70 +25,70 @@ spec:
pathType: Prefix
backend:
service:
name: client
name: app
port:
number: 80
- path: /$
pathType: ImplementationSpecific
backend:
service:
name: client
name: app
port:
number: 80
- path: /([0-9a-z_-]*).css$
pathType: ImplementationSpecific
backend:
service:
name: client
name: app
port:
number: 80
- path: /([0-9a-z_-]*).js$
pathType: ImplementationSpecific
backend:
service:
name: client
name: app
port:
number: 80
- path: /([0-9a-z_-]*).wasm$
pathType: ImplementationSpecific
backend:
service:
name: client
name: app
port:
number: 80
- path: /favicon.ico$
pathType: ImplementationSpecific
backend:
service:
name: client
name: app
port:
number: 80
- path: /assets/
pathType: Prefix
backend:
service:
name: client
name: app
port:
number: 80
- path: /c/
pathType: Prefix
backend:
service:
name: client
name: app
port:
number: 80
- path: /error/
pathType: Prefix
backend:
service:
name: client
name: app
port:
number: 80
- path: /snippets/
pathType: Prefix
backend:
service:
name: client
name: app
port:
number: 80
- path: /v1/cassette/
Expand All @@ -102,6 +102,6 @@ spec:
pathType: Prefix
backend:
service:
name: client
name: app
port:
number: 80

0 comments on commit 4e693e2

Please sign in to comment.