Answers for "The requested resource / was not found on this server."

0

Error: error installing: the server could not find the requested resource

kubectl apply -f tiller.yaml

helm init --service-account tiller --override spec.selector.matchLabels.'name'='tiller',spec.selector.matchLabels.'app'='helm' --output yaml | sed 's@apiVersion: extensions/v1beta1@apiVersion: apps/v1@' | kubectl apply -f -


# tiller.yaml file

kind: ServiceAccount
apiVersion: v1
metadata:
  name: tiller
  namespace: kube-system
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
  name: tiller
roleRef:
  apiGroup: rbac.authorization.k8s.io
  kind: ClusterRole
  name: cluster-admin
subjects:
  - kind: ServiceAccount
    name: tiller
    namespace: kube-system
Posted by: Guest on November-22-2020
0

The requested resource / was not found on this server.

I got the same problem which occurred by running the php -S 127.0.0.1:8000 in 
the wrong directory.

Project/src/ -> caused the error

Project/src/public -> Solved
Posted by: Guest on August-24-2021

Code answers related to "The requested resource / was not found on this server."

Browse Popular Code Answers by Language