Skip to content

Commit

Permalink
3.7 related customizations
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhil-vr committed Feb 21, 2022
1 parent e5516ba commit 06d9408
Show file tree
Hide file tree
Showing 5 changed files with 103,208 additions and 0 deletions.
22 changes: 22 additions & 0 deletions patches/3.7.0.0/Dockerfile
@@ -0,0 +1,22 @@
# Fixes to the default 3.7.0.0 reduced image.

# Build on object-reduced image (GA release)
FROM emcvipr/object:3.7.0.0-137697.a664876f8ed-reduced

#Modified SS partition script for CE.
ADD storageserver-partition-config.sh /opt/storageos/bin/
RUN /usr/bin/chmod +x /opt/storageos/bin/storageserver-partition-config.sh

#Use SeperateThreadpools for vnest for CE.
RUN f=/opt/storageos/conf/vnest-common-conf.xml; sed -i '562 i \ \ \ \ \ \ \ \ <prop key="object.UseSeparateThreadPools">true</prop>' $f

# Modify the SS partition script for CE.
RUN sed -i '/VMware/ s/$/ \&\& [ ! -e \/data\/is_community_edition ]/' /opt/storageos/bin/storageserver-partition-config.sh \
&& /usr/bin/chmod +x /opt/storageos/bin/storageserver-partition-config.sh

# Allow allocation of different blocks of a chunk to be stored on the same partition for CE.
RUN f=/opt/storageos/conf/ssm-cf-conf.xml ; sed -i '177s/value="false"/value="true"/' $f

#Modified dashboard for ECS CE.

ADD app.d3d55044dc35e817d5d0.js /opt/storageos/ecsportal/public/scripts/

0 comments on commit 06d9408

Please sign in to comment.