Hi@akhtar,
You can use eksctl command to create one Fargate Profile in AWS EKS. I have attached one example below for your reference.
apiVersion: eksctl.io/v1alpha5
kind: ClusterConfig
metadata:
  name: fargate-cluster
  region: ap-southeast-1
fargateProfiles:
  - name: fargate-default
    selectors:
      - namespace: default
      - namespace: kube-system
Copy this code in a yml file and run the below-given command.
$ eksctl create cluster -f fargate.yml
It will create one Fargate Profile for you.