hi team, I am running into an issue where I am try...
# questions-and-troubleshooting
r
hi team, I am running into an issue where I am trying to deploy FE+CN with S3 using helm chart. But when I keep aws_s3_use_instance_profile = true in FE Spec, then fe and cn pods comes healthy but I want to make it use serviceAccount role so I keep aws_s3_use_instance_profile = false and then fe pod is not coming up. Am I missing something here
Copy code
starrocksCluster:
  namespace: "dockprivileged"
  enabledBe: false
  enabledCn: true
  componentValues:
    serviceAccount: kubvir-starrocks-s3-sa
starrocksFESpec:
  service:
    type: ClusterIP
    ports:
      - name: query
        port: 9030
      - name: http
        port: 8030
  replicas: 1
  image:
    repository: starrocks/fe-ubuntu
    tag: "latest"
  imagePullPolicy: IfNotPresent
  resources:
    requests:
      cpu: 1
      memory: 2Gi
    limits:
      cpu: 1
      memory: 2Gi
  config: |
    run_mode = shared_data
    cloud_native_storage_type = S3
    aws_s3_path = test-demo/starrocks/
    aws_s3_region = us-east-1
    aws_s3_endpoint = <https://s3.amazonaws.com>
    enable_load_volume_from_conf = true
    aws_s3_use_instance_profile = false
    aws_s3_use_aws_sdk_default_behavior = false