DeamonSetでのデプロイ方法について #4752
-
やりたいことお世話になります。 (内容) 添付のyamlをapplyしようとしていますが、 設定した内容apiVersion: apps/v1
kind: DaemonSet
metadata:
name: fluent-daemonset
spec:
selector:
matchLabels:
name: fluent-pod
template:
metadata:
labels:
name: fluent-pod
spec:
containers:
- name: fluent-container
image: fluentd:latest
resources:
requests:
cpu: 300m
memory: 300Mi
limits:
memory: 500Mi
volumeMounts:
- name: config-volume
mountPath: /fluentd/etc
- name: var-log
mountPath: /var/log
- name: var-log-containers
mountPath: /var/log/containers
readOnly: true
volumes:
- name: config-volume
configMap:
name: fluent-configmap
- name: var-log
hostPath:
path: /var/log
- name: var-log-containers
hostPath:
path: /var/log/containers ログの内容No response 環境について- Fluentd version:
- TD Agent version:
- Fluent Package version:
- Docker image (tag):
- Operating system: OKD 4.15.0
- Kernel version:
- kubectl version:
Client Version: v1.28.2
Kustomize Version: v5.0.4-0.20230601165947-6ce0bf390ce3
Server Version: v1.28.2-3598+6e2789bbd58938-dirty |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
@githubBourbon マニフェストファイル(添付のyamlファイル)に全角スペースが含まれているのが原因と思われます。 |
Beta Was this translation helpful? Give feedback.
@githubBourbon マニフェストファイル(添付のyamlファイル)に全角スペースが含まれているのが原因と思われます。
半角スペースに直して試してみてください。