Ack-acm-controller: различия между версиями

Материал из noname.com.ua
Перейти к навигацииПерейти к поиску
(Новая страница: «acm-controller =Policy= <PRE> { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "acm:RequestCertificate",...»)
 
Строка 32: Строка 32:
 
]
 
]
 
}
 
}
  +
</PRE>
  +
  +
  +
=Helm=
  +
<PRE>
  +
helm repo add ack https://aws.github.io/eks-charts
  +
helm repo update
  +
  +
  +
helm install ack-acm-controller ack/ack-acm-controller \
  +
--namespace ack-system \
  +
--create-namespace \
  +
--set aws.region=us-east-1 \
  +
--set serviceAccount.create=false \
  +
--set serviceAccount.name=ack-acm-controller
 
</PRE>
 
</PRE>

Версия 13:39, 9 июня 2025

acm-controller

Policy

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Action": [
        "acm:RequestCertificate",
        "acm:DescribeCertificate",
        "acm:ListCertificates",
        "acm:DeleteCertificate",
        "acm:AddTagsToCertificate",
        "acm:UpdateCertificateOptions",
        "acm:ListTagsForCertificate"
      ],
      "Resource": "*"
    },
    {
      "Effect": "Allow",
      "Action": [
        "route53:ChangeResourceRecordSets",
        "route53:GetChange",
        "route53:ListHostedZonesByName",
        "route53:ListHostedZones",
        "route53:GetHostedZone"
      ],
      "Resource": "*"
    }
  ]
}


Helm

helm repo add ack https://aws.github.io/eks-charts
helm repo update


helm install ack-acm-controller ack/ack-acm-controller \
  --namespace ack-system \
  --create-namespace \
  --set aws.region=us-east-1 \
  --set serviceAccount.create=false \
  --set serviceAccount.name=ack-acm-controller