-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from epics-containers/update
Update to template 3.4.0
- Loading branch information
Showing
16 changed files
with
95 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# latest container image for GigE cameras from the GitHub Container Registry | ||
shared: | ||
ioc-instance: | ||
image: ghcr.io/epics-containers/ioc-adaravis-linux-runtime:2024.2.1 | ||
image: ghcr.io/epics-containers/ioc-adaravis-runtime:2024.4.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# latest container image for GigE cameras from the GitHub Container Registry | ||
shared: | ||
ioc-instance: | ||
image: ghcr.io/epics-containers/ioc-adaravis-linux-runtime:2024.2.1 | ||
image: ghcr.io/epics-containers/ioc-adaravis-runtime:2024.4.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
shared: | ||
ioc-instance: | ||
image: ghcr.io/pandablocks/pandablocks-ioc:0.3.2 | ||
image: ghcr.io/pandablocks/pandablocks-ioc:0.5.0 | ||
iocConfig: /epics/ioc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# latest container image for GigE cameras from the GitHub Container Registry | ||
shared: | ||
ioc-instance: | ||
image: ghcr.io/epics-containers/ioc-adsimdetector-linux-runtime:2024.2.1 | ||
image: ghcr.io/epics-containers/ioc-adsimdetector-runtime:2024.4.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
shared: | ||
ioc-instance: | ||
image: ghcr.io/epics-containers/ioc-pmac-linux-runtime:2024.2.1 | ||
image: ghcr.io/epics-containers/ioc-pmac-runtime:2024.4.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
worker_processes auto; | ||
|
||
# using tmp for logs due to capability DROPS on ioc namespaces | ||
# (UPDATE: are now using standard image, this is no longer necessary - probably) | ||
error_log /tmp/error.log notice; | ||
pid /tmp/nginx.pid; | ||
|
||
|
||
events { | ||
# using a low number here as this server won't get much traffic | ||
worker_connections 50; | ||
} | ||
|
||
|
||
http { | ||
autoindex on; | ||
|
||
include /etc/nginx/mime.types; | ||
default_type application/octet-stream; | ||
|
||
log_format main '$remote_addr - $remote_user [$time_local] "$request" ' | ||
'$status $body_bytes_sent "$http_referer" ' | ||
'"$http_user_agent" "$http_x_forwarded_for"'; | ||
|
||
access_log /tmp/access.log main; | ||
|
||
sendfile on; | ||
#tcp_nopush on; | ||
|
||
keepalive_timeout 65; | ||
|
||
#gzip on; | ||
|
||
include /etc/nginx/conf.d/*.conf; | ||
|
||
server { | ||
autoindex on; | ||
add_header Access-Control-Allow-Origin '*'; | ||
add_header Access-Control-Allow-Methods 'GET'; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# a config map to contain nginx config - ingests the files in config folder | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: {{ .Release.Name }}-nginx-config | ||
labels: | ||
app: {{ .Release.Name }} | ||
data: | ||
{{ (.Files.Glob "config/*").AsConfig | indent 2 }} | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters