Commiting ch7 work
parent
d3e4b11ea4
commit
668d313ccf
@ -0,0 +1,26 @@
|
||||
# Hexapod
|
||||
|
||||
|
||||
## Resouces or Inspiration
|
||||
|
||||
The pheonix code stuff is kind of old but look up this guy and his repos supports a quadmode also:
|
||||
https://github.com/KurtE/Arduino_Phoenix_Parts
|
||||
See also https://www.robotshop.com/community/robots/show/interbotix-phantomx-hexapod
|
||||
|
||||
[Hiwonder SpiderPi](https://www.hiwonder.hk/products/robosoul-spiderpi-ai-intelligent-visual-hexapod-robot-powered-by-raspberry-pi). Uses python, but fuck if I can find the code.
|
||||
|
||||
|
||||
### Markwtech
|
||||
|
||||
A very nice project. Available on thingiverse an
|
||||
|
||||
https://markwtech.com/robots/hexapod/
|
||||
https://www.thingiverse.com/thing:3463845?collect
|
||||
|
||||
|
||||
|
||||
## Gates
|
||||
tripod, ripple, wave walking gates
|
||||
adaptive gate to walk on uneven terrain. The interrobotics guys did this with the robotis api.
|
||||
Translate and rotate in place
|
||||
|
@ -0,0 +1,55 @@
|
||||
apiVersion: v1
|
||||
kind: Pod
|
||||
metadata:
|
||||
name: kuard
|
||||
labels:
|
||||
app: kuard
|
||||
version: dirp
|
||||
spec:
|
||||
volumes:
|
||||
- name: "kuard-data"
|
||||
hostPath:
|
||||
path: "/var/lib/kuard"
|
||||
# - name: "kuard-data"
|
||||
# nfs:
|
||||
# server: "my.nfs.server.local"
|
||||
# path: "/exports"
|
||||
containers:
|
||||
- image: gcr.io/kuar-demo/kuard-amd64:blue
|
||||
|
||||
name: kuard
|
||||
|
||||
volumeMounts:
|
||||
- mountPath: "/data"
|
||||
name: "kuard-data"
|
||||
|
||||
livenessProbe:
|
||||
httpGet:
|
||||
path: /healthy
|
||||
port: 8080
|
||||
initialDelaySeconds: 5
|
||||
timeoutSeconds: 1
|
||||
periodSeconds: 10
|
||||
failureThreshold: 3
|
||||
|
||||
readinessProbe:
|
||||
httpGet:
|
||||
path: "/ready"
|
||||
port: 8080
|
||||
initialDelaySeconds: 30
|
||||
timeoutSeconds: 1
|
||||
periodSeconds: 10
|
||||
failureThreshold: 3
|
||||
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
name: http
|
||||
protocol: TCP
|
||||
|
||||
resources:
|
||||
requests:
|
||||
cpu: "500m"
|
||||
memory: "128Mi"
|
||||
limits:
|
||||
cpu: "1000m"
|
||||
memory: "256Mi"
|
@ -0,0 +1,27 @@
|
||||
apiVersion: v1
|
||||
kind: Pod
|
||||
metadata:
|
||||
name: kuard
|
||||
spec:
|
||||
volumes:
|
||||
- name: "kuard-data"
|
||||
hostPath:
|
||||
path: "/var/lib/kuard"
|
||||
containers:
|
||||
- image: gcr.io/kuar-demo/kuard-amd64:blue
|
||||
name: kuard
|
||||
volumeMounts:
|
||||
- mountPath: "/data"
|
||||
name: "kuard-data"
|
||||
livenessProbe:
|
||||
httpGet:
|
||||
path: /healthy
|
||||
port: 8080
|
||||
initialDelaySeconds: 5
|
||||
timeoutSeconds: 1
|
||||
periodSeconds: 10
|
||||
failureThreshold: 3
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
name: http
|
||||
protocol: TCP
|
@ -0,0 +1,19 @@
|
||||
##
|
||||
|
||||
## Deployments
|
||||
|
||||
## Services
|
||||
|
||||
## Node Ports
|
||||
|
||||
## End Points
|
||||
|
||||
The "buddy" of a service. Contains the IP addresses for that service
|
||||
|
||||
```
|
||||
kubectl describe endpoints <service name>
|
||||
```
|
||||
|
||||
## Ingress
|
||||
|
||||
Multiple ingress objects are merged together into a single config for K8s internal HTTP Load balancing system.
|
Loading…
Reference in New Issue