refactor: rename custom components from shannon-* to hightower-*

Renames API server, worker jobs, credentials secret, and workspaces
PVC to use the hightower prefix. Upstream Shannon names (namespace,
Temporal service, package imports, .shannon/ dir) are unchanged.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-20 09:09:34 -04:00
parent ec4b7e674f
commit 7b16bf98f7
14 changed files with 42 additions and 30 deletions
+8 -8
View File
@@ -1,24 +1,24 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: shannon-api
name: hightower-api
namespace: shannon
labels:
app: shannon-api
app: hightower-api
spec:
replicas: 1
selector:
matchLabels:
app: shannon-api
app: hightower-api
template:
metadata:
labels:
app: shannon-api
app: hightower-api
spec:
serviceAccountName: shannon-api
serviceAccountName: hightower-api
containers:
- name: api
image: ghcr.io/farhoodliquor/shannon-api:latest
image: ghcr.io/farhoodliquor/hightower-api:latest
ports:
- containerPort: 3000
name: http
@@ -31,7 +31,7 @@ spec:
value: shannon
envFrom:
- secretRef:
name: shannon-credentials
name: hightower-credentials
volumeMounts:
- name: workspaces
mountPath: /app/workspaces
@@ -56,4 +56,4 @@ spec:
volumes:
- name: workspaces
persistentVolumeClaim:
claimName: shannon-workspaces
claimName: hightower-workspaces
+4 -4
View File
@@ -1,7 +1,7 @@
apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
name: shannon-api
name: hightower-api
namespace: shannon
rules:
- apiGroups: ["batch"]
@@ -17,13 +17,13 @@ rules:
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
name: shannon-api
name: hightower-api
namespace: shannon
subjects:
- kind: ServiceAccount
name: shannon-api
name: hightower-api
namespace: shannon
roleRef:
kind: Role
name: shannon-api
name: hightower-api
apiGroup: rbac.authorization.k8s.io
+2 -2
View File
@@ -1,11 +1,11 @@
apiVersion: v1
kind: Service
metadata:
name: shannon-api
name: hightower-api
namespace: shannon
spec:
selector:
app: shannon-api
app: hightower-api
ports:
- name: http
port: 3000
+1 -1
View File
@@ -1,5 +1,5 @@
apiVersion: v1
kind: ServiceAccount
metadata:
name: shannon-api
name: hightower-api
namespace: shannon