-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
103,208 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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/ |
Oops, something went wrong.