"use client"; import React, { useState } from "react"; import globalStyle from "@/app/globalStyle.module.css"; import TopHeader from "@/app/components/topHeader/TopHeader"; import styles from "./styles.module.css"; import variableStyles from "./variableStyles.module.css"; const AddServices = () => { const [triggerVariableDropDown, setTriggerVariableDropDown] = useState(false); return (

Project Details

Repository (Optional)

Name

Version

Image (Optional)

Port

Ingress

Ingress

Resource

CPU Request (MB)

CPU Limit (MB)

Memory Request (MB)

Memory Limit (MB)

Auto Scaling

Name

Version

Readiness

Readiness Path

Readiness Port

Liveness

Liveness Path

Liveness Port

setTriggerVariableDropDown(!triggerVariableDropDown) } >
{triggerVariableDropDown && (

Environment Variables

Volumes

Config Maps

)}

Environment Variables

Key

Value

No Environment Variables added

Volumes

Name

Path

Size/Type

Access Mode

Storage Class

No volume added

Config maps

No config map added

); }; export default AddServices;