Primer commit

This commit is contained in:
2025-04-27 15:57:11 +00:00
commit aac30bfe77
18 changed files with 310 additions and 0 deletions

13
services/core.yaml Normal file
View File

@ -0,0 +1,13 @@
apiVersion: v1
kind: Service
metadata:
name: harbor-core
namespace: harbor
spec:
selector:
app: harbor-core
ports:
- protocol: TCP
port: 80
targetPort: 8080
type: ClusterIP

13
services/database.yaml Normal file
View File

@ -0,0 +1,13 @@
apiVersion: v1
kind: Service
metadata:
name: harbor-database
namespace: harbor
spec:
selector:
app: harbor-database
ports:
- protocol: TCP
port: 5432
targetPort: 5432
type: ClusterIP

13
services/jobservice.yaml Normal file
View File

@ -0,0 +1,13 @@
apiVersion: v1
kind: Service
metadata:
name: harbor-jobservice
namespace: harbor
spec:
selector:
app: harbor-jobservice
ports:
- protocol: TCP
port: 8080
targetPort: 8080
type: ClusterIP

13
services/portal.yaml Normal file
View File

@ -0,0 +1,13 @@
apiVersion: v1
kind: Service
metadata:
name: harbor-portal
namespace: harbor
spec:
selector:
app: harbor-portal
ports:
- protocol: TCP
port: 8080
targetPort: 8080
type: ClusterIP

13
services/registry.yaml Normal file
View File

@ -0,0 +1,13 @@
apiVersion: v1
kind: Service
metadata:
name: harbor-registry
namespace: harbor
spec:
selector:
app: harbor-registry
ports:
- protocol: TCP
port: 5000
targetPort: 5000
type: ClusterIP