https://bentoml.com logo
Join Slack
Powered by
# tech-writing
  • t

    Tim Liu

    09/29/2022, 10:45 PM
    Nope, no video of that. Yea we should do that. I'm kinda slammed this week. Maybe next week take a look at it? A series of yatai videos was one of my next to dos if you can help with that
  • a

    Ashley Zhao

    09/29/2022, 10:47 PM
    Of course! Would be glad to help.
  • a

    Ashley Zhao

    09/30/2022, 5:30 PM
    Hello, @Xipeng Guan and @Jiang, I have a quick question about uninstall, which method is preferred for uninstalling Yatai, via deleting all its components:
    Copy code
    helm uninstall yatai -n yatai-system
    helm uninstall yatai -n yatai-components
    helm uninstall yatai-csi-driver-image-populator -n yatai-components
    helm list -n yatai-operators | tail -n +2 | awk '{print $1}' | xargs -I{} helm -n yatai-operators uninstall {}
    or additionally deleting the namespace, like the Bash script does? Thank you! I hope I’m not taking up too much of your time with these questions.
  • x

    Xipeng Guan

    09/30/2022, 6:03 PM
    The command you gave is an uninstall command for an older version of yatai, with the current version you can only delete yatai by following the delete-yatai.sh script https://github.com/bentoml/Yatai/blob/main/scripts/delete-yatai.sh
    gratitude thank you 1
  • s

    Slackbot

    10/04/2022, 2:52 AM
    This message was deleted.
    s
    j
    • 3
    • 4
  • s

    Slackbot

    10/10/2022, 1:24 AM
    This message was deleted.
    s
    x
    a
    • 4
    • 6
  • a

    Ashley Zhao

    10/13/2022, 9:36 PM
    Hello @Xipeng Guan @Jiang, I have a question about the issuer for the webhook, it looks like the example given presumes the user uses a self-signed certificate. Would you have an example of when the user has an issued certificate? (Here is the Issuer example in question)
    Copy code
    cat <<EOF > test-resources.yaml
    apiVersion: v1
    kind: Namespace
    metadata:
      name: cert-manager-test
    ---
    apiVersion: <http://cert-manager.io/v1|cert-manager.io/v1>
    kind: Issuer
    metadata:
      name: test-selfsigned
      namespace: cert-manager-test
    spec:
      selfSigned: {}
    ---
    apiVersion: <http://cert-manager.io/v1|cert-manager.io/v1>
    kind: Certificate
    metadata:
      name: selfsigned-cert
      namespace: cert-manager-test
    spec:
      dnsNames:
        - <http://example.com|example.com>
      secretName: selfsigned-cert-tls
      issuerRef:
        name: test-selfsigned
    EOF
1Latest