-
Notifications
You must be signed in to change notification settings - Fork 310
Apache webserver handles TLS on Ironic #728
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -42,20 +42,6 @@ spec: | |
| secretKeyRef: | ||
| name: mariadb-password | ||
| key: password | ||
| - name: ironic-httpd | ||
| image: quay.io/metal3-io/ironic | ||
| imagePullPolicy: Always | ||
| securityContext: | ||
| capabilities: | ||
| add: ["NET_ADMIN"] | ||
| command: | ||
| - /bin/runhttpd | ||
| volumeMounts: | ||
| - mountPath: /shared | ||
| name: ironic-data-volume | ||
| envFrom: | ||
| - configMapRef: | ||
| name: ironic-bmo-configmap | ||
| - name: ironic-api | ||
| image: quay.io/metal3-io/ironic | ||
| imagePullPolicy: Always | ||
|
|
@@ -104,6 +90,14 @@ spec: | |
| envFrom: | ||
| - configMapRef: | ||
| name: ironic-bmo-configmap | ||
| - name: httpd-reverse-proxy | ||
| image: quay.io/metal3-io/ironic-inspector | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should it be inspector image or ironic image?
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think I got the answer. It was added here metal3-io/ironic-inspector-image@7e2757d#diff-9f9f6a924db88783257f0da0c2ae75be9d01b5b1ea71d522caaafab42362392f |
||
| imagePullPolicy: Always | ||
| envFrom: | ||
| - configMapRef: | ||
| name: ironic-bmo-configmap | ||
| command: | ||
| - /bin/runhttpd | ||
| - name: ironic-inspector-log-watch | ||
| image: quay.io/metal3-io/ironic-inspector | ||
| imagePullPolicy: Always | ||
|
|
@@ -126,4 +120,4 @@ spec: | |
| name: ironic-data-volume | ||
| volumes: | ||
| - name: ironic-data-volume | ||
| emptyDir: {} | ||
| emptyDir: {} | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you should not remove this. This is the webserver for IPA image and other PXE related files
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@maelk I remove it because the httpd server which works as a WSGI server inside the ironic-api pod will also serve the IPA image.