Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Deployment/bicep/modules/azurekubernetesservice.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ resource aks 'Microsoft.ContainerService/managedClusters@2021-05-01' = {
properties: {
dnsPrefix: aksName
enableRBAC: true
kubernetesVersion: '1.28.10'
kubernetesVersion: '1.30.7'
agentPoolProfiles: [
{
name: 'agentpool1'
Expand Down
2 changes: 1 addition & 1 deletion Services/src/kernel-memory/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ RUN \
#Debian: useradd --create-home --user-group $USER --shell /bin/bash && \
adduser -D -h /app -s /bin/sh $USER && \
# Allow user to access the build
chown -R $USER.$USER /app
chown -R $USER:$USER /app

# Define current user
USER $USER
Expand Down