blob: 934e7b7b94743680839ebee03c764c92e00f95e1 [file] [log] [blame]
#
# ============LICENSE_START=======================================================
# Copyright (C) 2022 Nordix Foundation.
# ================================================================================
# 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.
#
# SPDX-License-Identifier: Apache-2.0
# ============LICENSE_END=========================================================
#
apiVersion: apps/v1
kind: Deployment
metadata:
name: auth-code-deployment
namespace: default
labels:
app: auth-code
spec:
selector:
matchLabels:
app: auth-code
template:
metadata:
labels:
app: auth-code
version: v1
spec:
containers:
- name: auth-code
image: ktimoney/rapps-rapp-auth-provider
imagePullPolicy: IfNotPresent
ports:
- containerPort: 9000
resources:
limits:
memory: 256Mi
cpu: "250m"
requests:
memory: 128Mi
cpu: "80m"
replicas: 1
---
apiVersion: v1
kind: Service
metadata:
name: auth-code
namespace: default
spec:
selector:
app: auth-code
ports:
- protocol: TCP
port: 80
targetPort: 9000
nodePort: 31233
type: NodePort