Rbac правила с Kubebuilder

Моя проблема в том, что я пытаюсь использовать unstructured.Unstructured введите, чтобы создать развертывание как таковое:

// +kubebuilder:rbac:groups=stable.resource.operator.io,resources=resource,verbs=get;list;watch;create;update;patch;delete
// +kubebuilder:rbac:groups=stable.resource.operator.io,resources=resource/status,verbs=get;update;patch
// +kubebuilder:rbac:groups=apps,resources=deployments,verbs=get;list;watch;create;update;patch;delete
// +kubebuilder:rbac:groups=apps,resources=deployments/status,verbs=get;list;watch;create;update;patch;delete
func (r *ResourceReconciler) Reconcile(req ctrl.Request) (ctrl.Result, error) {

    ctx := context.Background()
    log := r.Log.WithValues("resource", req.NamespacedName)
    instance := &stablev1.Resource{}
    // your logic here

    if err := r.Get(ctx, req.NamespacedName, instance); err != nil {
        log.Error(err, "unable to fetch Resource")
        // we'll ignore not-found errors, since they can't be fixed by an immediate
        // requeue (we'll need to wait for a new notification), and we can get them
        // on deleted requests.
        return ctrl.Result{}, ignoreNotFound(err)
    }
    // your logic here
    u := &unstructured.Unstructured{}
    u.Object = map[string]interface{}{
        "name":      "name",
        "namespace": "namespace",
        "spec": map[string]interface{}{
            "replicas": 2,
            "selector": map[string]interface{}{
                "matchLabels": map[string]interface{}{
                    "foo": "bar",
                },
            },
            "template": map[string]interface{}{
                "labels": map[string]interface{}{
                    "foo": "bar",
                },
                "spec": map[string]interface{}{
                    "containers": []map[string]interface{}{
                        {
                            "name":  "nginx",
                            "image": "nginx",
                        },
                    },
                },
            },
        },
    }
    u.SetGroupVersionKind(schema.GroupVersionKind{
        Group:   "apps",
        Kind:    "Deployment",
        Version: "v1",
    })
    err = r.Create(context.Background(), u)
    log.Error(err, "unable to get object")
    log.V(1).Info("reconciling")
    return ctrl.Result{}, nil

}

Насколько я понимаю, я указал правила rbac, мой оператор должен создать указанное развертывание, но я все еще получаю сообщение об ошибке:

the server does not allow this method on the requested resource

Все примеры, которые я видел, основаны на использовании фактического типа развертывания, я не могу найти где-нибудь, где есть пример сделать это с неструктурированным типом, я что-то упустил? Просто чтобы сэкономить время, я попытался:

  • Применение кластерролей вручную
  • С учетом оператора cluster-admin
  • использовал make run и make deploy (очевидно, после запуска make manifest и т. д.)
  • Генератор ролей работает
  • Я запустил новый проект, чтобы убедиться, что я не играю с env.

1 ответ

Решение

Таким образом, отдельно от того, что указано в документации на https://godoc.org/sigs.k8s.io/controller-runtime/pkg/client когда вы определяете тип unstructured.Unstructured, вам нужно задать пространство имен и имя в поле метаданных как например:

u.Object = map[string]interface{}{
        "metadata": map[string]interface{}{
            "name":      "name",
            "namespace": "namespace"},
        "spec": map[string]interface{}{
            "replicas": 2,
            "selector": map[string]interface{}{
                "matchLabels": map[string]interface{}{
                    "foo": "bar",
                },
            },
            "template": map[string]interface{}{
                "labels": map[string]interface{}{
                    "foo": "bar",
                },
                "spec": map[string]interface{}{
                    "containers": []map[string]interface{}{
                        {
                            "name":  "nginx",
                            "image": "nginx",
                        },
                    },
                },
            },
        },
    }

в противном случае неструктурированный клиент читает его как развертывание ресурсов кластерной области, которое не существует

Другие вопросы по тегам