Commit aa8541cd authored by Konstantinos Poulakakis's avatar Konstantinos Poulakakis
Browse files

refactor: spotless apply and kubernetes

parent 5af252b6
Loading
Loading
Loading
Loading
+0 −28
Original line number Diff line number Diff line
/*
 * Copyright 2022-2023 ETSI TeraFlowSDN - TFS OSG (https://tfs.etsi.org/)
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.etsi.tfs.policy.exception;

public class NewException extends RuntimeException {

    public NewException(String message, Exception e) {
        super(message, e);
    }

    public NewException(String message) {
        super(message);
    }
}
+133 −0
Original line number Diff line number Diff line
---
apiVersion: v1
kind: Service
metadata:
  annotations:
    app.quarkus.io/commit-id: 5af252b6acd7e8bc36acbb668cc6f1f0405346f1
    app.quarkus.io/build-timestamp: 2024-02-14 - 13:13:25 +0000
    prometheus.io/scrape: "true"
    prometheus.io/path: /q/metrics
    prometheus.io/port: "8080"
    prometheus.io/scheme: http
  labels:
    app.kubernetes.io/name: policyservice
    app.kubernetes.io/version: 0.1.0
    app: policyservice
    app.kubernetes.io/managed-by: quarkus
  name: policyservice
spec:
  ports:
    - name: https
      port: 443
      protocol: TCP
      targetPort: 8443
    - name: http
      port: 9192
      protocol: TCP
      targetPort: 8080
    - name: grpc
      port: 6060
      protocol: TCP
      targetPort: 6060
  selector:
    app.kubernetes.io/name: policyservice
  type: ClusterIP
---
apiVersion: apps/v1
kind: Deployment
metadata:
  annotations:
    app.quarkus.io/commit-id: 5af252b6acd7e8bc36acbb668cc6f1f0405346f1
    app.quarkus.io/build-timestamp: 2024-02-14 - 13:13:25 +0000
    prometheus.io/scrape: "true"
    prometheus.io/path: /q/metrics
    prometheus.io/port: "8080"
    prometheus.io/scheme: http
  labels:
    app: policyservice
    app.kubernetes.io/managed-by: quarkus
    app.kubernetes.io/version: 0.1.0
    app.kubernetes.io/name: policyservice
  name: policyservice
spec:
  replicas: 1
  selector:
    matchLabels:
      app.kubernetes.io/name: policyservice
  template:
    metadata:
      annotations:
        app.quarkus.io/commit-id: 5af252b6acd7e8bc36acbb668cc6f1f0405346f1
        app.quarkus.io/build-timestamp: 2024-02-14 - 13:13:25 +0000
        prometheus.io/scrape: "true"
        prometheus.io/path: /q/metrics
        prometheus.io/port: "8080"
        prometheus.io/scheme: http
      labels:
        app: policyservice
        app.kubernetes.io/managed-by: quarkus
        app.kubernetes.io/version: 0.1.0
        app.kubernetes.io/name: policyservice
    spec:
      containers:
        - env:
            - name: KUBERNETES_NAMESPACE
              valueFrom:
                fieldRef:
                  fieldPath: metadata.namespace
            - name: CONTEXT_SERVICE_HOST
              value: contextservice
            - name: SERVICE_SERVICE_HOST
              value: serviceservice
            - name: MONITORING_SERVICE_HOST
              value: monitoringservice
          image: labs.etsi.org:5050/tfs/controller/policy:0.1.0
          imagePullPolicy: Always
          livenessProbe:
            failureThreshold: 3
            httpGet:
              path: /q/health/live
              port: 8080
              scheme: HTTP
            initialDelaySeconds: 2
            periodSeconds: 10
            successThreshold: 1
            timeoutSeconds: 10
          name: policyservice
          ports:
            - containerPort: 8443
              name: https
              protocol: TCP
            - containerPort: 8080
              name: http
              protocol: TCP
            - containerPort: 6060
              name: grpc
              protocol: TCP
          readinessProbe:
            failureThreshold: 3
            httpGet:
              path: /q/health/ready
              port: 8080
              scheme: HTTP
            initialDelaySeconds: 2
            periodSeconds: 10
            successThreshold: 1
            timeoutSeconds: 10
          resources:
            limits:
              cpu: 500m
              memory: 2048Mi
            requests:
              cpu: 50m
              memory: 512Mi
          startupProbe:
            failureThreshold: 3
            httpGet:
              path: /q/health/started
              port: 8080
              scheme: HTTP
            initialDelaySeconds: 5
            periodSeconds: 10
            successThreshold: 1
            timeoutSeconds: 10
+14 −14

File changed.

Contains only whitespace changes.

+14 −14

File changed.

Contains only whitespace changes.

+14 −14

File changed.

Contains only whitespace changes.